fs: missed one %lld fix

This commit is contained in:
Omar Rizwan 2021-01-12 00:30:29 -08:00
parent 6d4b8ef5d1
commit 0a6c542c76
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ static int tabfs_truncate(const char *path, off_t size) {
char *rdata;
size_t rsize;
exchange_json(&rdata, &rsize,
"op: %Q, path: %Q, size: %d",
"op: %Q, path: %Q, size: %lld",
"truncate", path, size);
parse_and_free_response(rdata, rsize, "");