]> sourceware.org Git - glibc.git/commitdiff
(class __pthread_cleanup_class): Add missing closing braces.
authorUlrich Drepper <drepper@redhat.com>
Thu, 26 Jun 2003 01:13:19 +0000 (01:13 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 26 Jun 2003 01:13:19 +0000 (01:13 +0000)
nptl/sysdeps/pthread/pthread.h

index 1f0a34baa200b38d4abce151a3a76fb00d43b40a..56d40e716e7da83f5a27eb46bfae06674ba2ff07 100644 (file)
@@ -444,8 +444,8 @@ class __pthread_cleanup_class
   ~__pthread_cleanup_class () { if (__do_it) __cancel_routine (__cancel_arg); }
   __setdoit (int __newval) { __do_it = __newval; }
   __defer () { pthread_setcanceltype (PTHREAD_CANCEL_DEFERRED,
-                                     &__cancel_type);
-  __restore () const { pthread_setcanceltype (__cancel_type, 0);
+                                     &__cancel_type); }
+  __restore () const { pthread_setcanceltype (__cancel_type, 0); }
 };
 
 /* Install a cleanup handler: ROUTINE will be called with arguments ARG
This page took 0.043006 seconds and 5 git commands to generate.