diff options
author | Orgad Shaneh <orgads@gmail.com> | 2016-11-29 22:54:16 +0200 |
---|---|---|
committer | Mike Frysinger <vapier@chromium.org> | 2016-11-29 21:04:21 +0000 |
commit | e6ef06f13d702a6c1271ca5f198ca738cffd2403 (patch) | |
tree | 2bbae303b76f40d7c6e89fe24eb7ee972a422bb3 | |
parent | microdump_stackwalk_test: fix bashism in test (diff) | |
download | breakpad-e6ef06f13d702a6c1271ca5f198ca738cffd2403.tar.xz |
Comment out an unused function argument
Change-Id: I09c90d496edc67d4cad3e2b99f4347dc04713bdb
Reviewed-on: https://chromium-review.googlesource.com/414357
Reviewed-by: Mike Frysinger <vapier@chromium.org>
-rw-r--r-- | src/client/linux/handler/exception_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/linux/handler/exception_handler.cc b/src/client/linux/handler/exception_handler.cc index b63f973b..c8cb768a 100644 --- a/src/client/linux/handler/exception_handler.cc +++ b/src/client/linux/handler/exception_handler.cc @@ -424,7 +424,7 @@ int ExceptionHandler::ThreadEntry(void *arg) { // This function runs in a compromised context: see the top of the file. // Runs on the crashing thread. -bool ExceptionHandler::HandleSignal(int sig, siginfo_t* info, void* uc) { +bool ExceptionHandler::HandleSignal(int /*sig*/, siginfo_t* info, void* uc) { if (filter_ && !filter_(callback_context_)) return false; |