]> gcc.gnu.org Git - gcc.git/commitdiff
gthr-posix.h (__gthread_recursive_mutex_init_function): Add missing return statement.
authorJan Beulich <jbeulich@novell.com>
Mon, 23 May 2005 06:42:19 +0000 (06:42 +0000)
committerJan Beulich <jbeulich@gcc.gnu.org>
Mon, 23 May 2005 06:42:19 +0000 (06:42 +0000)
gcc/
2005-05-23  Jan Beulich  <jbeulich@novell.com>

* gthr-posix.h (__gthread_recursive_mutex_init_function): Add
missing return statement.

From-SVN: r100075

gcc/ChangeLog
gcc/gthr-posix.h

index 045f2317416473807fcaf96ebdd3e5884c9f0bab..74c51bc0408f8054301d5056bbb3c3bde51e85bf 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-23  Jan Beulich  <jbeulich@novell.com>
+
+       * gthr-posix.h (__gthread_recursive_mutex_init_function): Add
+       missing return statement.
+
 2005-05-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
 
        * config/sparc/sparc.c (sparc_emit_float_lib_cmp): Use
index 9b56b5aec51176b2076814f6df5766567b6f3ad5..938b4f15dd9b950fff35cb24b6e05d1714baf259 100644 (file)
@@ -548,6 +548,7 @@ __gthread_recursive_mutex_init_function (__gthread_recursive_mutex_t *mutex)
        r = pthread_mutexattr_destroy (&attr);
       return r;
     }
+  return 0;
 }
 #endif
 
This page took 0.075663 seconds and 5 git commands to generate.