MDEV-19522 fixup: Use correct printf format

This commit is contained in:
Marko Mäkelä 2021-10-21 15:53:35 +03:00
parent fbb1e92e25
commit 39f63f6643

View File

@ -45,8 +45,8 @@ int main(int, char**)
!memcmp(&fts_info[i].buf, buf, len) &&
fts_decode_vlc(&fts_buf) == fts_info[i].val &&
fts_buf == &buf[len])
ok(true, "FTS Encoded for %d bytes", fts_info[i].len);
ok(true, "FTS Encoded for %zu bytes", fts_info[i].len);
else
ok(false, "FTS Encoded for %d bytes", fts_info[i].len);
ok(false, "FTS Encoded for %zu bytes", fts_info[i].len);
}
}