aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2022-03-05 12:24:16 +0100
committerJan Sucan <jan@jansucan.com>2022-03-05 12:24:16 +0100
commit2717aa4af2e9014ebe33b808aff1eff7a2ff4908 (patch)
tree8bc5fc4672ac5e730418bd2c4d1c2ddb5e69525c
parent37677a62c3d4baa4c70cefd9646ba62fd1e62649 (diff)
Fix an error message
-rw-r--r--src/backup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backup.c b/src/backup.c
index 186cff0..7e7c159 100644
--- a/src/backup.c
+++ b/src/backup.c
@@ -64,7 +64,7 @@ check_files(const options_t *const opts, const resources_t *const res)
return 1;
} else if ((in_size % opts->sector_size) != 0) {
print_error(
- "size of input file and reference file is not multiple of" PRIu32,
+ "size of input file and reference file is not multiple of %" PRIu32,
opts->sector_size);
return 1;
}