aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Washburn <development@efficientek.com>2022-05-11 22:19:46 -0500
committerDaniel Kiper <daniel.kiper@oracle.com>2022-06-07 12:51:50 +0200
commit56ae06906de6bbc9d7e958183d996f080a2523dd (patch)
tree38d9c138a39fd35abc282ad7bd805fc2c02dfcde
parentdaf96d31abe500d7c36a1af320df446921cd9a5c (diff)
downloadgrub-56ae06906de6bbc9d7e958183d996f080a2523dd.tar.gz
commands/macbless: Remove whitespace between N_ macro and open parenthesis
Signed-off-by: Glenn Washburn <development@efficientek.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
-rw-r--r--grub-core/commands/macbless.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/grub-core/commands/macbless.c b/grub-core/commands/macbless.c
index 85cefd0f7..3d761452a 100644
--- a/grub-core/commands/macbless.c
+++ b/grub-core/commands/macbless.c
@@ -220,12 +220,10 @@ GRUB_MOD_INIT(macbless)
{
cmd = grub_register_command ("mactelbless", grub_cmd_macbless,
N_("FILE"),
- N_
- ("Bless FILE of HFS or HFS+ partition for intel macs."));
+ N_("Bless FILE of HFS or HFS+ partition for intel macs."));
cmd_ppc =
grub_register_command ("macppcbless", grub_cmd_macbless, N_("DIR"),
- N_
- ("Bless DIR of HFS or HFS+ partition for PPC macs."));
+ N_("Bless DIR of HFS or HFS+ partition for PPC macs."));
}
GRUB_MOD_FINI(macbless)