]> sourceware.org Git - libabigail.git/commitdiff
[dwarf-reader] Fix indentation in compare_dies_string_attribute_value
authorDodji Seketeli <dodji@redhat.com>
Mon, 17 Jun 2019 12:56:50 +0000 (14:56 +0200)
committerDodji Seketeli <dodji@redhat.com>
Mon, 17 Jun 2019 12:56:50 +0000 (14:56 +0200)
While looking at something else, I realized that
compare_dies_string_attribute_value had some indentation that was off.

Fixed thus.

* src/abg-dwarf-reader.cc (compare_dies_string_attribute_value):
Fix indentation.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
src/abg-dwarf-reader.cc

index f8b96f46e085dbd4d461f7961bfbe1f28296138e..76aa6690186ddbe0f6736c2d39f5d510ec243488 100644 (file)
@@ -10059,12 +10059,12 @@ compare_dies_string_attribute_value(const Dwarf_Die *l, const Dwarf_Die *r,
     return false;
 
   ABG_ASSERT(l_attr.form == DW_FORM_strp
-        || l_attr.form == DW_FORM_string
-        || l_attr.form == DW_FORM_GNU_strp_alt);
+            || l_attr.form == DW_FORM_string
+            || l_attr.form == DW_FORM_GNU_strp_alt);
 
   ABG_ASSERT(r_attr.form == DW_FORM_strp
-        || r_attr.form == DW_FORM_string
-        || r_attr.form == DW_FORM_GNU_strp_alt);
+            || r_attr.form == DW_FORM_string
+            || r_attr.form == DW_FORM_GNU_strp_alt);
 
   if ((l_attr.form == DW_FORM_strp
        && r_attr.form == DW_FORM_strp)
This page took 0.049984 seconds and 5 git commands to generate.