* util/i386/pc/grub-setup.c (usage): Pass an extra `program_name'
argument to printf. * util/sparc64/ieee1275/grub-setup.c (usage): Likewise.
This commit is contained in:
parent
c88a83f644
commit
7d24e434c5
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-06-17 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* util/i386/pc/grub-setup.c (usage): Pass an extra `program_name'
|
||||
argument to printf.
|
||||
* util/sparc64/ieee1275/grub-setup.c (usage): Likewise.
|
||||
|
||||
2010-06-17 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* util/i386/pc/grub-setup.c (usage): Fix syntax error.
|
||||
|
|
|
@ -624,7 +624,7 @@ You should not normally run %s directly. Use grub-install instead.\n\
|
|||
\n\
|
||||
Report bugs to <%s>.\n\
|
||||
"),
|
||||
program_name,
|
||||
program_name, program_name,
|
||||
DEFAULT_BOOT_FILE, DEFAULT_CORE_FILE, DEFAULT_DIRECTORY,
|
||||
DEFAULT_DEVICE_MAP, PACKAGE_BUGREPORT);
|
||||
|
||||
|
|
|
@ -420,7 +420,7 @@ You should not normally run %s directly. Use grub-install instead.\n\
|
|||
-v, --verbose print verbose messages\n\
|
||||
\n\
|
||||
Report bugs to <%s>.\n\
|
||||
", program_name,
|
||||
", program_name, program_name,
|
||||
DEFAULT_BOOT_FILE, DEFAULT_CORE_FILE, DEFAULT_DIRECTORY,
|
||||
DEFAULT_DEVICE_MAP, PACKAGE_BUGREPORT);
|
||||
|
||||
|
|
Loading…
Reference in a new issue