diff options
Diffstat (limited to 'libctf/ctf-lookup.c')
-rw-r--r-- | libctf/ctf-lookup.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libctf/ctf-lookup.c b/libctf/ctf-lookup.c index 6e17e5f..2e78cf4 100644 --- a/libctf/ctf-lookup.c +++ b/libctf/ctf-lookup.c @@ -592,9 +592,9 @@ ctf_lookup_symbol_idx (ctf_dict_t *fp, const char *symname) cache->ctf_symhash_latest) < 0) goto oom; if (strcmp (sym.st_name, symname) == 0) - return cache->ctf_symhash_latest++; - } - break; + return cache->ctf_symhash_latest++; + } + break; case sizeof (Elf32_Sym): { Elf32_Sym *symp = (Elf32_Sym *) sp->cts_data; @@ -607,8 +607,8 @@ ctf_lookup_symbol_idx (ctf_dict_t *fp, const char *symname) cache->ctf_symhash_latest) < 0) goto oom; if (strcmp (sym.st_name, symname) == 0) - return cache->ctf_symhash_latest++; - } + return cache->ctf_symhash_latest++; + } break; default: ctf_set_errno (fp, ECTF_SYMTAB); @@ -902,7 +902,7 @@ ctf_lookup_by_sym_or_name (ctf_dict_t *fp, unsigned long symidx, if (symidx > fp->ctf_dynsymmax) goto try_parent; - sym = fp->ctf_dynsymidx[symidx]; + sym = fp->ctf_dynsymidx[symidx]; err = ECTF_NOTYPEDAT; if (!sym || (sym->st_shndx != STT_OBJECT && sym->st_shndx != STT_FUNC)) goto try_parent; |