diff options
| author | Jan Sucan <jan@jansucan.com> | 2022-03-05 12:24:16 +0100 |
|---|---|---|
| committer | Jan Sucan <jan@jansucan.com> | 2022-03-05 12:24:16 +0100 |
| commit | 2717aa4af2e9014ebe33b808aff1eff7a2ff4908 (patch) | |
| tree | 8bc5fc4672ac5e730418bd2c4d1c2ddb5e69525c /src/backup.c | |
| parent | 37677a62c3d4baa4c70cefd9646ba62fd1e62649 (diff) | |
Fix an error message
Diffstat (limited to 'src/backup.c')
| -rw-r--r-- | src/backup.c | 2 |
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; } |
