From 4a753029bb7ea5df0d59f99f40b09ea85c4184c5 Mon Sep 17 00:00:00 2001 From: John Johansen Date: Tue, 17 Jun 2014 10:58:09 -0700 Subject: [PATCH] Update error message to indicate it is about a binary profile or cache file Signed-off-by: John Johansen --- parser/parser_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/parser_main.c b/parser/parser_main.c index e017bd2c3..e0c3ec3ed 100644 --- a/parser/parser_main.c +++ b/parser/parser_main.c @@ -718,7 +718,7 @@ int process_binary(int option, const char *profilename) if (profilename) { fd = open(profilename, O_RDONLY); if (fd == -1) { - PERROR(_("Error: Could not read profile %s: %s.\n"), + PERROR(_("Error: Could not read binary profile or cache file %s: %s.\n"), profilename, strerror(errno)); exit(errno); }