evas generic loader ps - fix warning about printf format mismatch type

it's right. types are uint but format exects unsigned long. fix.
This commit is contained in:
Carsten Haitzler 2017-02-11 22:41:22 +09:00
parent ff05e39904
commit 376b799c65
1 changed files with 2 additions and 1 deletions

View File

@ -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();