summaryrefslogtreecommitdiffstats
path: root/libdw/cie.c
diff options
context:
space:
mode:
Diffstat (limited to 'libdw/cie.c')
-rw-r--r--libdw/cie.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libdw/cie.c b/libdw/cie.c
index 758daef5..3d56b057 100644
--- a/libdw/cie.c
+++ b/libdw/cie.c
@@ -160,7 +160,8 @@ internal_function
__libdw_find_cie (Dwarf_CFI *cache, Dwarf_Off offset)
{
const struct dwarf_cie cie_key = { .offset = offset };
- struct dwarf_cie **found = eu_tfind (&cie_key, &cache->cie_tree, &compare_cie);
+ struct dwarf_cie **found = eu_tfind (&cie_key, &cache->cie_tree,
+ &compare_cie);
if (found != NULL)
return *found;
@@ -189,7 +190,8 @@ internal_function
__libdw_intern_cie (Dwarf_CFI *cache, Dwarf_Off offset, const Dwarf_CIE *info)
{
const struct dwarf_cie cie_key = { .offset = offset };
- struct dwarf_cie **found = eu_tfind (&cie_key, &cache->cie_tree, &compare_cie);
+ struct dwarf_cie **found = eu_tfind (&cie_key, &cache->cie_tree,
+ &compare_cie);
if (found == NULL)
/* We have not read this CIE yet. Enter it. */
(void) intern_new_cie (cache, offset, info);