diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-14 16:04:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-14 16:04:01 +0000 |
commit | 1cfb1a324798f6ed03e49813d8dfe6b28dfb9c4f (patch) | |
tree | e45051cede5e258b47718812e830748b0354ceb6 /libpthread/linuxthreads.old/pthread.c | |
parent | 6770a73cfa0feeb809434131ce019988975a41a5 (diff) |
heed compiler warnings about checking non-defined variables in #if directives
Diffstat (limited to 'libpthread/linuxthreads.old/pthread.c')
-rw-r--r-- | libpthread/linuxthreads.old/pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads.old/pthread.c b/libpthread/linuxthreads.old/pthread.c index 119c1cdda..308845d36 100644 --- a/libpthread/linuxthreads.old/pthread.c +++ b/libpthread/linuxthreads.old/pthread.c @@ -321,7 +321,7 @@ libpthread_hidden_proto(pthread_condattr_init) struct pthread_functions __pthread_functions = { -#if !(USE_TLS && HAVE___THREAD) +#if !(defined USE_TLS && HAVE___THREAD) .ptr_pthread_internal_tsd_set = __pthread_internal_tsd_set, .ptr_pthread_internal_tsd_get = __pthread_internal_tsd_get, .ptr_pthread_internal_tsd_address = __pthread_internal_tsd_address, |