* util/grub-mkimagexx.c (relocate_symbols): Remove unneeded brackets.

This commit is contained in:
Vladimir Serbinenko 2013-11-07 01:04:06 +01:00
parent f30c692c1f
commit 7cb24eb5ff
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-mkimagexx.c (relocate_symbols): Remove unneeded brackets.
2013-11-07 Vladimir Serbinenko <phcoder@gmail.com> 2013-11-07 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/gettext/gettext.c (main_context), (secondary_context): * grub-core/gettext/gettext.c (main_context), (secondary_context):

View file

@ -103,7 +103,7 @@ SUFFIX (relocate_symbols) (Elf_Ehdr *e, Elf_Shdr *sections,
{ {
continue; continue;
} }
else if ((cur_index == STN_UNDEF)) else if (cur_index == STN_UNDEF)
{ {
if (sym->st_name) if (sym->st_name)
grub_util_error ("undefined symbol %s", name); grub_util_error ("undefined symbol %s", name);