diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-12-05 06:56:10 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-12-05 06:56:10 +0000 |
commit | 505ea44a9eb1c24d838e61a8b022e5188b235c87 (patch) | |
tree | e3bdb31f7dc2f6deb234d136d72c0c5501ce0e44 /lib | |
parent | 23a8eec3a155dc746eea9e0043645d95cd8b02d2 (diff) |
Mark sigthr()'s sig argument as __unused
Diffstat (limited to 'lib')
-rw-r--r-- | lib/librthread/rthread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librthread/rthread.c b/lib/librthread/rthread.c index b3f059544ec..e710820ebc0 100644 --- a/lib/librthread/rthread.c +++ b/lib/librthread/rthread.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rthread.c,v 1.46 2011/12/05 04:02:03 guenther Exp $ */ +/* $OpenBSD: rthread.c,v 1.47 2011/12/05 06:56:09 guenther Exp $ */ /* * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org> * All Rights Reserved. @@ -99,7 +99,7 @@ _rthread_start(void *v) } static void -sigthr_handler(int sig) +sigthr_handler(__unused int sig) { pthread_t self = pthread_self(); |