diff options
author | Karel Zak <kzak@redhat.com> | 2012-05-29 11:01:23 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2012-05-29 11:01:23 +0200 |
commit | 5aaf51f2fcbf0a7bad6f80697379b06f833385ba (patch) | |
tree | b92290a58019aa64c93037bfa70e4ed45b954cf9 | |
parent | e254d0914486122a9949f3f7dfe758eb24360472 (diff) | |
download | util-linux-5aaf51f2fcbf0a7bad6f80697379b06f833385ba.tar.gz |
su: fix compiler warning [-Wunused-parameter]
Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r-- | login-utils/su.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/login-utils/su.c b/login-utils/su.c index bbddea23..96486c26 100644 --- a/login-utils/su.c +++ b/login-utils/su.c @@ -195,7 +195,7 @@ cleanup_pam (int retcode) /* Signal handler for parent process. */ static void -su_catch_sig (int sig) +su_catch_sig (int sig __attribute__((__unused__))) { caught_signal = true; } |