summaryrefslogtreecommitdiff
path: root/zwgc/mux.c
diff options
context:
space:
mode:
Diffstat (limited to 'zwgc/mux.c')
-rw-r--r--zwgc/mux.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/zwgc/mux.c b/zwgc/mux.c
index 55d5e3e..a7b2210 100644
--- a/zwgc/mux.c
+++ b/zwgc/mux.c
@@ -210,8 +210,9 @@ mux_loop(void)
#ifdef DEBUG
if (zwgc_debug)
fprintf(stderr,
- "mux_loop...activity on fd %d, calling %x(%x)\n",
- i,input_handler[i],input_handler_arg[i]);
+ "mux_loop...activity on fd %d, calling %lx(%lx)\n",
+ i, (unsigned long)input_handler[i],
+ (unsigned long)input_handler_arg[i]);
#endif
input_handler[i](input_handler_arg[i]);
}