aboutsummaryrefslogtreecommitdiff
path: root/src/client/linux/handler
diff options
context:
space:
mode:
authorOrgad Shaneh <orgads@gmail.com>2016-11-29 22:54:16 +0200
committerMike Frysinger <vapier@chromium.org>2016-11-29 21:04:21 +0000
commite6ef06f13d702a6c1271ca5f198ca738cffd2403 (patch)
tree2bbae303b76f40d7c6e89fe24eb7ee972a422bb3 /src/client/linux/handler
parentmicrodump_stackwalk_test: fix bashism in test (diff)
downloadbreakpad-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>
Diffstat (limited to 'src/client/linux/handler')
-rw-r--r--src/client/linux/handler/exception_handler.cc2
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;