summaryrefslogtreecommitdiff
path: root/src/generic
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2016-07-13 10:05:03 -0400
committerChris Michael <cp.michael@samsung.com>2016-07-13 10:05:03 -0400
commitea7fe4efdc11fef405b906d628f39d4c80c3fb5c (patch)
treec878141ff05ac67b74ba373c4f3414fcaab245c2 /src/generic
parent0e4b9afeb0817ac70c84884885aecb3518b7fe5d (diff)
downloadefl-ea7fe4efdc11fef405b906d628f39d4c80c3fb5c.tar.gz
evas-generic: Fix gcc warning of incorrect format
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>
Diffstat (limited to 'src/generic')
-rw-r--r--src/generic/evas/ps/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generic/evas/ps/main.c b/src/generic/evas/ps/main.c
index c5b8a18ff6..d069e77d91 100644
--- a/src/generic/evas/ps/main.c
+++ b/src/generic/evas/ps/main.c
@@ -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();