Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 02:45:25 +0000 (02:45 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 02:45:25 +0000 (02:45 +0000)
2000-02-22  Ulrich Drepper  <drepper@redhat.com>

* semaphore.h (SEM_FAILED): Use 0 not NULL.

linuxthreads/ChangeLog
linuxthreads/semaphore.h

index fa20028..cd5d10c 100644 (file)
@@ -1,3 +1,7 @@
+2000-02-22  Ulrich Drepper  <drepper@redhat.com>
+
+       * semaphore.h (SEM_FAILED): Use 0 not NULL.
+
 2000-02-14  Ulrich Drepper  <drepper@redhat.com>
 
        * condvar.c (pthread_cond_timedwait_relative_old): Tight loop with
index a3cc422..21a9dea 100644 (file)
@@ -39,7 +39,7 @@ typedef struct
 
 
 /* Value returned if `sem_open' failed.  */
-#define SEM_FAILED     ((sem_t *) NULL)
+#define SEM_FAILED     ((sem_t *) 0)
 
 /* Maximum value the semaphore can have.  */
 #define SEM_VALUE_MAX  ((int) ((~0u) >> 1))