Skip to content

Commit

Permalink
testsuite: Fix fprintf data type segfault, GitHub #1666
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmark committed Oct 22, 2024
1 parent 6161457 commit 89be90c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testsuite/afpcmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -2079,7 +2079,7 @@ DSI *dsi;
dsi = &conn->dsi;

if (!Quiet) {
fprintf(stdout,"[%s] read fork %d offset %ll size %d\n", __func__, fork , offset, size);
fprintf(stdout,"[%s] read fork %d offset %lld size %d\n", __func__, fork , offset, size);
}

ret = AFPRead(conn,fork, offset, size, data);
Expand Down

0 comments on commit 89be90c

Please sign in to comment.