Skip to content
Snippets Groups Projects
Commit 59e663c3 authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Address a warning related to printing off_t.

parent 91fe3de6
No related branches found
No related tags found
No related merge requests found
......@@ -4456,8 +4456,8 @@ static int syscall_sendfile(struct state *state, struct syscall_spec *syscall,
if ((status == STATUS_OK) &&
(script_sbytes != live_sbytes)) {
asprintf(error,
"Expected sbytes %lu but got %lu",
script_sbytes, live_sbytes);
"Expected sbytes %lld but got %lld",
(long long)script_sbytes, (long long)live_sbytes);
goto error_out;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment