diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-01-23 22:37:01 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-01-23 22:37:01 +0100 |
commit | 95bb1ae902f590156048149c73da48fe851ed224 (patch) | |
tree | c922cf2e189531694f3ad5b8adbcff9492547207 /libc/pwd_grp/lckpwdf.c | |
parent | d75f980f379dfbbe70ae8fb0956693a95af2fca2 (diff) |
silence some warnings about unused params
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/pwd_grp/lckpwdf.c')
-rw-r--r-- | libc/pwd_grp/lckpwdf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/pwd_grp/lckpwdf.c b/libc/pwd_grp/lckpwdf.c index e02cab6ad..da72b0fcb 100644 --- a/libc/pwd_grp/lckpwdf.c +++ b/libc/pwd_grp/lckpwdf.c @@ -146,7 +146,7 @@ ulckpwdf (void) static void -noop_handler (int sig) -{ +noop_handler (int sig attribute_unused) + /* We simply return which makes the `fcntl' call return with an error. */ } |