diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2021-08-11 11:40:42 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2021-08-11 11:40:56 +0200 |
commit | 582cf12f949d462073b01aea4dc61628880d6d60 (patch) | |
tree | 9339a2083717837e11bcc8f5919b015b09b7a311 /extra | |
parent | 74cb160992c743d4121ba69260d93f68ac1f4c68 (diff) | |
download | mariadb-git-582cf12f949d462073b01aea4dc61628880d6d60.tar.gz |
mariabackup - fix string format in error message
Diffstat (limited to 'extra')
-rw-r--r-- | extra/mariabackup/xtrabackup.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index 198d39cdeb6..2dd3f3eb929 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -3531,7 +3531,7 @@ next_file: if (err == ERROR_NO_MORE_FILES) { status = 1; } else { - msg("readdir_next_file in %s returned %lu", dir, err); + msg("FindNextFile in %s returned %lu", dirname, err); status = -1; } } |