diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-05-06 04:08:42 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-05-06 18:03:44 -0400 |
commit | 37dce673d841e7df75091a3b31828431e71bd78f (patch) | |
tree | f96fb24a965349ad1597e07b5684dd8ba0d537bc /src | |
parent | 8905b82df8a6dc1668d8e817924fb7b8cd574bdc (diff) |
XtAppProcessEvent expects XtInputMask parameter, which is unsigned-long
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/Event.c | 2 |
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; |