summaryrefslogtreecommitdiff
path: root/gthread/gthread-posix.c
diff options
context:
space:
mode:
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>2000-03-20 16:43:28 +0000
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>2000-03-20 16:43:28 +0000
commit68c4ed996f6dfbdc28d834f34b0f19c6f97f5877 (patch)
treed002f4231b50be5aa415b82c550f67c674cb30e5 /gthread/gthread-posix.c
parent1266a4b88ac7e2b461c10b5055f435be24aa640a (diff)
downloadglib-68c4ed996f6dfbdc28d834f34b0f19c6f97f5877.tar.gz
Forgot a '}' in a macro for DCE-threads. Thanks to Karl Nelson
2000-03-20 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * gthread-posix.c (posix_check_for_error): Forgot a '}' in a macro for DCE-threads. Thanks to Karl Nelson <kenelson@ece.ucdavis.edu> for pointing that out.
Diffstat (limited to 'gthread/gthread-posix.c')
-rw-r--r--gthread/gthread-posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gthread/gthread-posix.c b/gthread/gthread-posix.c
index aeaac4610..13ba0c63c 100644
--- a/gthread/gthread-posix.c
+++ b/gthread/gthread-posix.c
@@ -55,7 +55,7 @@
# define condattr_default NULL
#elif defined(G_THREADS_IMPL_DCE)
# define posix_check_for_error( what ) G_STMT_START{ \
- if( (what) == -1 ) { posix_print_error( what, errno ); \
+ if( (what) == -1 ) { posix_print_error( what, errno ); } \
}G_STMT_END
# define pthread_key_create(a, b) pthread_keycreate (a, b)
# define pthread_attr_init(a) pthread_attr_create (a)