diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-04-08 09:24:03 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-04-08 09:24:03 +0300 |
commit | 0ba845a8c7e59eec3f7cb84baf924bd5a7190a13 (patch) | |
tree | 8675cd5bae0d3658b162f59b32f5de41111e93a7 | |
parent | b4f09aa268481d14b5d739f20bb66641d8f1d838 (diff) | |
download | mariadb-git-0ba845a8c7e59eec3f7cb84baf924bd5a7190a13.tar.gz |
MDEV-17913 fixup: Correct a DBUG_PRINT format string
-rw-r--r-- | storage/maria/ma_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/maria/ma_open.c b/storage/maria/ma_open.c index d45907a44b9..d346c606c4e 100644 --- a/storage/maria/ma_open.c +++ b/storage/maria/ma_open.c @@ -569,7 +569,7 @@ MARIA_HA *maria_open(const char *name, int mode, uint open_flags, ((share->state.changed & (STATE_MOVED | STATE_NOT_ZEROFILLED)) == (STATE_MOVED | STATE_NOT_ZEROFILLED)))) { - DBUG_PRINT("warning", ("table is moved from another system. uuid_diff: %d create_trid: %lu max_trid: %lu moved: &d", + DBUG_PRINT("warning", ("table is moved from another system. uuid_diff: %d create_trid: %lu max_trid: %lu moved: %d", memcmp(share->base.uuid, maria_uuid, MY_UUID_SIZE) != 0, (ulong) share->state.create_trid, |