* util/grub-mkimagexx.c (relocate_symbols): Remove unneeded brackets.
This commit is contained in:
parent
f30c692c1f
commit
7cb24eb5ff
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
||||
|
||||
* grub-core/gettext/gettext.c (main_context), (secondary_context):
|
||||
|
|
|
@ -103,7 +103,7 @@ SUFFIX (relocate_symbols) (Elf_Ehdr *e, Elf_Shdr *sections,
|
|||
{
|
||||
continue;
|
||||
}
|
||||
else if ((cur_index == STN_UNDEF))
|
||||
else if (cur_index == STN_UNDEF)
|
||||
{
|
||||
if (sym->st_name)
|
||||
grub_util_error ("undefined symbol %s", name);
|
||||
|
|
Loading…
Reference in a new issue