* util/grub-script-check.c (main): Uniform the error message.
This commit is contained in:
parent
6c724b85b4
commit
08dad2dcf9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2013-01-20 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-script-check.c (main): Uniform the error message.
|
||||||
|
|
||||||
2013-01-20 Colin Watson <cjwatson@ubuntu.com>
|
2013-01-20 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
Remove nested functions from ELF iterators.
|
Remove nested functions from ELF iterators.
|
||||||
|
|
|
@ -169,7 +169,7 @@ main (int argc, char *argv[])
|
||||||
if (! ctx.file)
|
if (! ctx.file)
|
||||||
{
|
{
|
||||||
char *program = xstrdup(program_name);
|
char *program = xstrdup(program_name);
|
||||||
fprintf (stderr, "%s: %s: %s\n", program_name,
|
fprintf (stderr, _("cannot open `%s': %s"),
|
||||||
ctx.arguments.filename, strerror (errno));
|
ctx.arguments.filename, strerror (errno));
|
||||||
argp_help (&argp, stderr, ARGP_HELP_STD_USAGE, program);
|
argp_help (&argp, stderr, ARGP_HELP_STD_USAGE, program);
|
||||||
free(program);
|
free(program);
|
||||||
|
|
Loading…
Reference in a new issue