summaryrefslogtreecommitdiff
path: root/src/Event.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2019-05-06 04:08:42 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2019-05-06 18:03:44 -0400
commit37dce673d841e7df75091a3b31828431e71bd78f (patch)
treef96fb24a965349ad1597e07b5684dd8ba0d537bc /src/Event.c
parent8905b82df8a6dc1668d8e817924fb7b8cd574bdc (diff)
downloadxorg-lib-libXt-37dce673d841e7df75091a3b31828431e71bd78f.tar.gz
XtAppProcessEvent expects XtInputMask parameter, which is unsigned-long
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/Event.c')
-rw-r--r--src/Event.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Event.c b/src/Event.c
index 389cf9c..799cc3e 100644
--- a/src/Event.c
+++ b/src/Event.c
@@ -1542,7 +1542,7 @@ void XtMainLoop(void)
void XtAppMainLoop(
XtAppContext app)
{
- long m = XtIMAll;
+ XtInputMask m = XtIMAll;
LOCK_APP(app);
do {
if( m == 0 ) m=XtIMAll;