From: Carsten Haitzler (Rasterman) Date: Sat, 11 Feb 2017 13:41:22 +0000 (+0900) Subject: evas generic loader ps - fix warning about printf format mismatch type X-Git-Tag: upstream/1.20.0~2053 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=376b799c6536f5ee456f3ad49f83aa6b5121f36f;p=platform%2Fupstream%2Fefl.git evas generic loader ps - fix warning about printf format mismatch type it's right. types are uint but format exects unsigned long. fix. --- diff --git a/src/generic/evas/ps/main.c b/src/generic/evas/ps/main.c index d069e77..6fdd74c 100644 --- a/src/generic/evas/ps/main.c +++ b/src/generic/evas/ps/main.c @@ -280,7 +280,8 @@ main(int argc, char **argv) { // nothing much to do, the receiver will simply ignore the // data as it's too short - D("fwrite failed (%lu bytes): %m\n", width * height * sizeof(DATA32)); + D("fwrite failed (%llu bytes): %m\n", + (unsigned long long)(width * height * sizeof(DATA32))); } } shm_free();