Fix build errors with XORG < 111: I assume that the last NULL argument
to GetKeyboardEvents was a typo...



git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4982 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/unix/xserver/hw/vnc/Input.cc b/unix/xserver/hw/vnc/Input.cc
index 9b32648..c8b892a 100644
--- a/unix/xserver/hw/vnc/Input.cc
+++ b/unix/xserver/hw/vnc/Input.cc
@@ -327,7 +327,7 @@
 
 	action = down ? KeyPress : KeyRelease;
 #if XORG < 111
-	n = GetKeyboardEvents(eventq, dev, action, kc, NULL);
+	n = GetKeyboardEvents(eventq, dev, action, kc);
 	enqueueEvents(dev, n);
 #else
 	QueueKeyboardEvents(dev, action, kc, NULL);