aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2009-07-24 11:18:03 -0700
committerBrian Behlendorf <[email protected]>2009-07-24 11:18:03 -0700
commit40cad03c514bbae9962d32e8243f2379a3ca831a (patch)
treef102bc53bfc2609ac64cf08be6c60342bfafef4f /lib
parentfa5f870580a9ba55517ee67f2e0d74e3d16137b1 (diff)
parent94d276aed036b3b53bfc699398d01c8f3480f1fd (diff)
Merge commit 'refs/top-bases/linux-configure-branch' into linux-configure-branch
Diffstat (limited to 'lib')
-rw-r--r--lib/libzpool/kernel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libzpool/kernel.c b/lib/libzpool/kernel.c
index 445a7d616..ab97636ba 100644
--- a/lib/libzpool/kernel.c
+++ b/lib/libzpool/kernel.c
@@ -181,8 +181,8 @@ zk_thread_create(caddr_t stk, size_t stksize, thread_func_t func, void *arg,
list_insert_head(&kthread_list, kt);
VERIFY3S(pthread_mutex_unlock(&kthread_lock), ==, 0);
- VERIFY(pthread_create(&kt->t_tid, &kt->t_attr,
- (void *(*)(void *))func, arg) == 0);
+ VERIFY3U(pthread_create(&kt->t_tid, &kt->t_attr,
+ (void *(*)(void *))func, arg), ==, 0);
return kt;
}