Skip to content

Commit

Permalink
MDEV-19522 fixup: Use correct printf format
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Oct 21, 2021
1 parent fbb1e92 commit 39f63f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/innobase/unittest/innodb_fts-t.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 39f63f6

Please sign in to comment.