Forgot a '}' in a macro for DCE-threads. Thanks to Karl Nelson
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>
Mon, 20 Mar 2000 16:43:28 +0000 (16:43 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Mon, 20 Mar 2000 16:43:28 +0000 (16:43 +0000)
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.

gthread/ChangeLog
gthread/gthread-posix.c

index 42038ba66b27c3e90446629d28e5b68340cd722a..800457403e64432707f250ce4478c7409dd62bd4 100644 (file)
@@ -1,3 +1,9 @@
+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.
+
 2000-03-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * gthread-posix.c: Don't use priorities for threads, when the
index aeaac46104c3edcae5010453b6b247668af13772..13ba0c63c1a9cc74312f0ad48fe943d344b27513 100644 (file)
@@ -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)