ports/security/hashdeep/patches/patch-src_files_cpp

23 lines
836 B
Text

Fixes for Clang 6.
Index: src/files.cpp
--- src/files.cpp.orig
+++ src/files.cpp
@@ -509,7 +509,7 @@ int state::parse_encase_file(const char *fn, FILE *han
// Users expect the line numbers to start at one, not zero.
if ((!ocb.opt_silent) || (mode_warn_only)) {
- ocb.error("%s: No hash found in line %"PRIu32, fn, count + 1);
+ ocb.error("%s: No hash found in line %" PRIu32, fn, count + 1);
ocb.error("%s: %s", fn, strerror(errno));
return status_t::STATUS_USER_ERROR;
}
@@ -542,7 +542,7 @@ int state::parse_encase_file(const char *fn, FILE *han
}
if (expected_hashes != count){
- ocb.error("%s: Expecting %"PRIu32" hashes, found %"PRIu32"\n",
+ ocb.error("%s: Expecting %" PRIu32" hashes, found %" PRIu32"\n",
fn, expected_hashes, count);
}
return status_t::status_ok;