diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-11-14 22:20:16 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2012-11-14 22:20:16 +0000 |
commit | c2463a8709e5b3a5ce54c09d35b4820a756b0fc5 (patch) | |
tree | 2ffc551e57f0545a17c165d729c1438a26236f60 /source/tools/acpixtract | |
parent | 31aa864e8c068201d58aad3a8f82ddb51df11015 (diff) |
Import ACPICA 20121114.vendor/acpica/20121114
Notes
Notes:
svn path=/vendor-sys/acpica/dist/; revision=243044
svn path=/vendor-sys/acpica/20121114/; revision=243045; tag=vendor/acpica/20121114
Diffstat (limited to 'source/tools/acpixtract')
-rw-r--r-- | source/tools/acpixtract/acpixtract.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/tools/acpixtract/acpixtract.c b/source/tools/acpixtract/acpixtract.c index ef5b28a1d91b..e7a60dc20dde 100644 --- a/source/tools/acpixtract/acpixtract.c +++ b/source/tools/acpixtract/acpixtract.c @@ -335,7 +335,7 @@ AxCountTableInstances ( InputFile = fopen (InputPathname, "rt"); if (!InputFile) { - printf ("Could not open %s\n", InputPathname); + printf ("Could not open file %s\n", InputPathname); return (0); } @@ -465,7 +465,7 @@ AxExtractTables ( InputFile = fopen (InputPathname, "rt"); if (!InputFile) { - printf ("Could not open %s\n", InputPathname); + printf ("Could not open file %s\n", InputPathname); return (-1); } @@ -560,7 +560,7 @@ AxExtractTables ( OutputFile = fopen (Filename, "w+b"); if (!OutputFile) { - printf ("Could not open %s\n", Filename); + printf ("Could not open file %s\n", Filename); Status = -1; goto CleanupAndExit; } @@ -595,7 +595,7 @@ AxExtractTables ( BytesWritten = fwrite (Data, 1, BytesConverted, OutputFile); if (BytesWritten != BytesConverted) { - printf ("Write error on %s\n", Filename); + printf ("Error when writing file %s\n", Filename); fclose (OutputFile); OutputFile = NULL; Status = -1; @@ -665,7 +665,7 @@ AxListTables ( InputFile = fopen (InputPathname, "rt"); if (!InputFile) { - printf ("Could not open %s\n", InputPathname); + printf ("Could not open file %s\n", InputPathname); return (-1); } |