(submit/dix_typedef_fixes) dix: fix duplicate typedef of CallbackListPtr
fix warning on duplicated typedef: > In file included from ../dix/main.c:86: > ../dix/callback_priv.h:10:31: warning: redefinition of typedef 'CallbackListPtr' is a C11 feature [-Wtypedef-redefinition] > typedef struct _CallbackList *CallbackListPtr; > ^ > ../include/callback.h:60:31: note: previous definition is here > typedef struct _CallbackList *CallbackListPtr; /* also in misc.h */ > ^ Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
514081d23a
commit
f327de8a4b
|
@ -7,8 +7,6 @@
|
|||
|
||||
#include "callback.h"
|
||||
|
||||
typedef struct _CallbackList *CallbackListPtr;
|
||||
|
||||
void InitCallbackManager(void);
|
||||
void DeleteCallbackManager(void);
|
||||
|
||||
|
|
Loading…
Reference in New Issue