diff options
author | 2007-04-27 19:44:48 +0000 | |
---|---|---|
committer | 2007-04-27 19:44:48 +0000 | |
commit | dee765f0b31bfea55a9403c2eb430029d796a81c (patch) | |
tree | 377bc4115b1846ccf890a6b26bfcd8bf88b7d257 /lib/libpthread/uthread | |
parent | registers are accessed via configurable windows in the PCI memory space, (diff) | |
download | wireguard-openbsd-dee765f0b31bfea55a9403c2eb430029d796a81c.tar.xz wireguard-openbsd-dee765f0b31bfea55a9403c2eb430029d796a81c.zip |
fix minor nit with previous commit
Diffstat (limited to 'lib/libpthread/uthread')
-rw-r--r-- | lib/libpthread/uthread/uthread_cancel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/uthread_cancel.c b/lib/libpthread/uthread/uthread_cancel.c index 560e034527b..859cc2bf8e7 100644 --- a/lib/libpthread/uthread/uthread_cancel.c +++ b/lib/libpthread/uthread/uthread_cancel.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_cancel.c,v 1.15 2007/04/27 19:40:08 kurt Exp $ */ +/* $OpenBSD: uthread_cancel.c,v 1.16 2007/04/27 19:44:48 kurt Exp $ */ /* * David Leonard <d@openbsd.org>, 1999. Public domain. */ @@ -6,7 +6,7 @@ #include <pthread.h> #include "pthread_private.h" -static void finish_cancellation(struct pthread *arg); +static void finish_cancellation(struct pthread *); int pthread_cancel(pthread_t pthread) |