Commit 7158d9d1 authored by Michael Tremer's avatar Michael Tremer

Fix off_t casting in tests

Signed-off-by: default avatarMichael Tremer <michael.tremer@ipfire.org>
parent 435b621e
......@@ -73,7 +73,7 @@ int main(int argc, char** argv) {
exit(EXIT_FAILURE);
}
printf("Added string at %jd\n", pos);
printf("Added string at %jd\n", (intmax_t)pos);
// Must start at first byte
if (pos != 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment