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>
This commit is contained in:
Chris Michael 2016-07-13 10:05:03 -04:00
parent 0e4b9afeb0
commit ea7fe4efdc
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ main(int argc, char **argv)
{ {
// nothing much to do, the receiver will simply ignore the // nothing much to do, the receiver will simply ignore the
// data as it's too short // 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(); shm_free();