This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: typo in gthr-dce.h


The patch corrects an obvious typo.

Dave
-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)

2000-08-04  J. David Anglin  <dave@hiauly1.hia.nrc.ca>

	* gthr-dce.h (__gthread_objc_condition_allocate): Fix type.

--- gthr-dce.h.orig	Thu Jul 20 12:11:10 2000
+++ gthr-dce.h	Fri Aug  4 12:58:54 2000
@@ -330,7 +330,7 @@
 static inline int
 __gthread_objc_condition_allocate(objc_condition_t condition)
 {
-  if (__gthread_active_p ()
+  if (__gthread_active_p ())
     /* Unimplemented. */
     return -1;
   else

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]