diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-03-09 09:18:14 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-03-09 23:12:06 -0800 |
commit | ad2a06d4d3c60198bc40116623153f71a208a240 (patch) | |
tree | 60c724bda375bab7b9e97a618347fe2fe7fbb279 | |
parent | 73a0fbb479f5b7806a3dd0741be55c9abda76220 (diff) |
Remove duplicate declaration of XFixesExtensionName in Xfixesint.h
Silences gcc warnings:
In file included from Region.c:26:0:
Xfixesint.h:52:13: warning: redundant redeclaration of 'XFixesExtensionName' [-Wredundant-decls]
Xfixesint.h:34:13: note: previous declaration of 'XFixesExtensionName' was here
In file included from Cursor.c:49:0:
Xfixesint.h:52:13: warning: redundant redeclaration of 'XFixesExtensionName' [-Wredundant-decls]
Xfixesint.h:34:13: note: previous declaration of 'XFixesExtensionName' was here
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | src/Xfixesint.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Xfixesint.h b/src/Xfixesint.h index 2ee17bc..8a4d5fd 100644 --- a/src/Xfixesint.h +++ b/src/Xfixesint.h @@ -31,8 +31,6 @@ #include "Xfixes.h" #include <X11/extensions/xfixesproto.h> -extern char XFixesExtensionName[]; - typedef struct _XFixesExtDisplayInfo { struct _XFixesExtDisplayInfo *next; /* keep a linked list */ Display *display; /* which display this is */ |