From b159832418dd6ac92229686e1ac6b23f0fe609cb Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 8 Oct 2008 10:49:16 +0200 Subject: notify: removed the "Notify" typedef Typedefs shouldn't be used, use the bare struct names instead. --- src/notify.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/notify.h') diff --git a/src/notify.h b/src/notify.h index b8018232d..d2a7df027 100644 --- a/src/notify.h +++ b/src/notify.h @@ -21,11 +21,11 @@ #include "os_compat.h" -typedef struct notify { +struct notify { pthread_mutex_t mutex; pthread_cond_t cond; int pending; -} Notify; +}; #define NOTIFY_INITIALIZER { \ .mutex = PTHREAD_MUTEX_INITIALIZER, \ -- cgit v1.2.3