diff options
author | Brian Behlendorf <[email protected]> | 2009-07-24 11:10:21 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-07-24 11:10:21 -0700 |
commit | 430d6004e5289bee7d187eedabe98cefc01d7a6f (patch) | |
tree | a38f47260c2c7bdb4446019ffe5e05f65152671a /lib | |
parent | 63eac41313813c1709e59308290d20c60451637b (diff) | |
parent | 25a102501ea79d32cf919f52095d558582124ae1 (diff) |
Merge branch 'linux-arc' into refs/top-bases/linux-zfs-branch
Conflicts:
scripts/Makefile.am
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libzpool/kernel.c | 4 |
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; } |