OSDN Git Service

gcc/
authorjbeulich <jbeulich@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 23 May 2005 06:42:19 +0000 (06:42 +0000)
committerjbeulich <jbeulich@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 23 May 2005 06:42:19 +0000 (06:42 +0000)
2005-05-23  Jan Beulich  <jbeulich@novell.com>

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

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100075 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/gthr-posix.h

index 045f231..74c51bc 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
 2005-05-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
 
        * config/sparc/sparc.c (sparc_emit_float_lib_cmp): Use
index 9b56b5a..938b4f1 100644 (file)
@@ -548,6 +548,7 @@ __gthread_recursive_mutex_init_function (__gthread_recursive_mutex_t *mutex)
        r = pthread_mutexattr_destroy (&attr);
       return r;
     }
        r = pthread_mutexattr_destroy (&attr);
       return r;
     }
+  return 0;
 }
 #endif
 
 }
 #endif