mariabackup - fix string format in error message

This commit is contained in:
Vladislav Vaintroub 2021-08-11 11:40:42 +02:00
parent 74cb160992
commit 582cf12f94

View File

@ -3531,7 +3531,7 @@ next_file:
if (err == ERROR_NO_MORE_FILES) { if (err == ERROR_NO_MORE_FILES) {
status = 1; status = 1;
} else { } else {
msg("readdir_next_file in %s returned %lu", dir, err); msg("FindNextFile in %s returned %lu", dirname, err);
status = -1; status = -1;
} }
} }