Commit 39f63f66 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-19522 fixup: Use correct printf format

parent fbb1e92e
...@@ -45,8 +45,8 @@ int main(int, char**) ...@@ -45,8 +45,8 @@ int main(int, char**)
!memcmp(&fts_info[i].buf, buf, len) && !memcmp(&fts_info[i].buf, buf, len) &&
fts_decode_vlc(&fts_buf) == fts_info[i].val && fts_decode_vlc(&fts_buf) == fts_info[i].val &&
fts_buf == &buf[len]) 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 else
ok(false, "FTS Encoded for %d bytes", fts_info[i].len); ok(false, "FTS Encoded for %zu bytes", fts_info[i].len);
} }
} }
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