From 46a42f7500afa02620ab9d347be6d4dd3e6af047 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 26 Feb 2009 14:37:01 +0100 Subject: [PATCH] unpack.c: add missing \n in error msg. --HG-- extra : convert_revision : ba47dd04be5b7a8d4d5a1e97b28573e67f89a79e --- lib/unpack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unpack.c b/lib/unpack.c index d9f2aeb7d49..5646c337b4d 100644 --- a/lib/unpack.c +++ b/lib/unpack.c @@ -75,7 +75,7 @@ xbps_unpack_binary_pkg(prop_dictionary_t repo, prop_dictionary_t pkg, free(path); if ((rv = xbps_check_file_hash(binfile, sha256)) == ERANGE) { - printf("ERROR: SHA256 doesn't match for %s!", + printf("ERROR: SHA256 doesn't match for %s!\n", prop_string_cstring_nocopy(filename)); free(binfile); return rv;