From 6b993f076ea3f4b270b97d8b3bf3210372e477e0 Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 5 Feb 2015 21:06:29 -0800 Subject: [PATCH] vpxdec: correct file op error messages - use fatal() consistently - correct wording in output file open failure message Change-Id: I4dafe03c6eece6df53375f72adf0d5964e211c9a --- vpxdec.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/vpxdec.c b/vpxdec.c index 310f4a059..f99d1e437 100644 --- a/vpxdec.c +++ b/vpxdec.c @@ -519,7 +519,7 @@ static FILE *open_outfile(const char *name) { } else { FILE *file = fopen(name, "wb"); if (!file) - fatal("Failed to output file %s", name); + fatal("Failed to open output file '%s'", name); return file; } } @@ -725,8 +725,7 @@ int main_loop(int argc, const char **argv_) { infile = strcmp(fn, "-") ? fopen(fn, "rb") : set_binary_mode(stdin); if (!infile) { - fprintf(stderr, "Failed to open file '%s'", strcmp(fn, "-") ? fn : "stdin"); - return EXIT_FAILURE; + fatal("Failed to open input file '%s'", strcmp(fn, "-") ? fn : "stdin"); } #if CONFIG_OS_SUPPORT /* Make sure we don't dump to the terminal, unless forced to with -o - */ -- 2.40.0