projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e4b9af
)
evas-generic: Fix gcc warning of incorrect format
author
Chris Michael
<cp.michael@samsung.com>
Wed, 13 Jul 2016 14:05:03 +0000
(10:05 -0400)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/src/generic/evas/ps/main.c
b/src/generic/evas/ps/main.c
index
c5b8a18
..
d069e77
100644
(file)
--- 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();