evas-generic: Fix gcc warning of incorrect format
authorChris Michael <cp.michael@samsung.com>
Wed, 13 Jul 2016 14:05:03 +0000 (10:05 -0400)
committerChris Michael <cp.michael@samsung.com>
Wed, 13 Jul 2016 14:05:03 +0000 (10:05 -0400)
Gcc warns us about using %d here when the argument is unsigned long.
Fix format params.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/generic/evas/ps/main.c

index c5b8a18..d069e77 100644 (file)
@@ -280,7 +280,7 @@ main(int argc, char **argv)
                {
                   // nothing much to do, the receiver will simply ignore the
                   // data as it's too short
-                  D("fwrite failed (%d bytes): %m\n", width * height * sizeof(DATA32));
+                  D("fwrite failed (%lu bytes): %m\n", width * height * sizeof(DATA32));
                }
           }
         shm_free();