diff options
author | Cyril Brulebois <kibi@debian.org> | 2010-11-11 23:55:55 +0100 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2010-11-12 11:49:21 +1000 |
commit | c481dae0dc89d8d50cac23210023d75bfaf6012b (patch) | |
tree | 407701c49d1c71cb30433f99640a1cae7439a3f2 /test | |
parent | b8114f25b266624c8f73d03c710349f98693d877 (diff) |
test: Fix missing xkbsrv.h include.
Otherwise, building fails with CFLAGS="-Wall -Werror" this way:
| protocol-common.c: In function ‘init_simple’:
| protocol-common.c:159: error: implicit declaration of function ‘XkbInitPrivates’
| protocol-common.c:159: error: nested extern declaration of ‘XkbInitPrivates’
Signed-off-by: Cyril Brulebois <kibi@debian.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r-- | test/xi2/protocol-common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/xi2/protocol-common.c b/test/xi2/protocol-common.c index 50f2b8698..10d82a501 100644 --- a/test/xi2/protocol-common.c +++ b/test/xi2/protocol-common.c @@ -28,6 +28,7 @@ #include <stdint.h> #include "extinit.h" /* for XInputExtensionInit */ #include "exglobals.h" +#include "xkbsrv.h" /* for XkbInitPrivates */ #include <glib.h> #include "protocol-common.h" |