diff options
author | rpj <rpj> | 2003-08-19 07:09:12 +0000 |
---|---|---|
committer | rpj <rpj> | 2003-08-19 07:09:12 +0000 |
commit | bea8978fb8ab1a6d106fc6761b50fb55a98373d4 (patch) | |
tree | 9df48d3fe53a27ee86a3379fbc6603ac35b0091b /tests/kill1.c | |
parent | de906ef6d2a5d88df4896d4adab6b1520ad1f4f6 (diff) |
Fix accidental corruption of some test cases.snap-2003-08-19
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; } |