diff options
Diffstat (limited to 'tests/kill1.c')
-rw-r--r-- | tests/kill1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/kill1.c b/tests/kill1.c index d1bad37..b9477fc 100644 --- a/tests/kill1.c +++ b/tests/kill1.c @@ -79,7 +79,7 @@ main() { void * result = NULL; - assert(pthread_kill(pthread_self(), 0) == EINVAL); + assert(pthread_kill(pthread_self(), 1) == EINVAL); return 0; } |