From fbb8c1f3da8177d8f49f5e10d8c67715553323c0 Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Fri, 24 Feb 2017 00:21:45 -0500 Subject: [PATCH] wmomikuzi: Use short unsigned ints for dockapp dimensions. Fixes "incompatible pointer type" warnings. --- wmomikuzi/wmomikuzi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmomikuzi/wmomikuzi.c b/wmomikuzi/wmomikuzi.c index c49bc5a..56702ba 100644 --- a/wmomikuzi/wmomikuzi.c +++ b/wmomikuzi/wmomikuzi.c @@ -82,7 +82,7 @@ main(int argc, char **argv) Pixmap kyou_pixmap; Pixmap daikyou_pixmap; - int w = 64, h = 64; + short unsigned int w = 64, h = 64; DACallbacks callbacks = {NULL,buttonPressCallback ,buttonReleaseCallback,NULL,NULL,NULL,NULL};