Skip to content

Commit 23d2dae

Browse files
committed
Fix some integer type mismatch warnings
1 parent e02b860 commit 23d2dae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extra/mariabackup/xtrabackup.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4291,12 +4291,12 @@ xtrabackup_apply_delta(
42914291

42924292
page_size = info.page_size.physical();
42934293
page_size_shift = get_bit_shift(page_size);
4294-
msg("mariabackup: page size for %s is %lu bytes\n",
4294+
msg("mariabackup: page size for %s is %zu bytes\n",
42954295
src_path, page_size);
42964296
if (page_size_shift < 10 ||
42974297
page_size_shift > UNIV_PAGE_SIZE_SHIFT_MAX) {
42984298
msg("mariabackup: error: invalid value of page_size "
4299-
"(%lu bytes) read from %s\n", page_size, meta_path);
4299+
"(%zu bytes) read from %s\n", page_size, meta_path);
43004300
goto error;
43014301
}
43024302

0 commit comments

Comments
 (0)