[binutils-gdb] binutils/readelf: fix indentation in process_dynamic_section

Simon Marchi simark@sourceware.org
Fri Mar 4 15:58:23 GMT 2022


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=84a9f1953047dee70f45ae8ac276ea3d8293351d

commit 84a9f1953047dee70f45ae8ac276ea3d8293351d
Author: Simon Marchi <simon.marchi@polymtl.ca>
Date:   Fri Mar 4 10:57:14 2022 -0500

    binutils/readelf: fix indentation in process_dynamic_section
    
    Clangd shows a warning about misleading indentation in this file, fix
    it.
    
    binutils/ChangeLog:
    
            * readelf.c (process_dynamic_section): Fix indentation.
    
    Change-Id: I43a7f4f4c75dd080af614222b980526f5debf297

Diff:
---
 binutils/ChangeLog |  4 ++++
 binutils/readelf.c | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 07e09cdf341..1a8da33f509 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2022-03-04  Simon Marchi  <simon.marchi@polymtl.ca>
+
+	* readelf.c (process_dynamic_section): Fix indentation.
+
 2022-02-09  Nick Clifton  <nickc@redhat.com>
 
 	* README-how-to-make-a-release: Update after the 2.38 release.
diff --git a/binutils/readelf.c b/binutils/readelf.c
index b208db59334..16efe1dfd2d 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -11297,12 +11297,12 @@ the .dynstr section doesn't match the DT_STRTAB and DT_STRSZ tags\n"));
 		filedata->file_name,
 		filedata->dynamic_addr,
 		(unsigned long) filedata->dynamic_nent);
-	  else
-	    printf (ngettext ("\nDynamic section at offset 0x%lx contains %lu entry:\n",
-			      "\nDynamic section at offset 0x%lx contains %lu entries:\n",
-			      (unsigned long) filedata->dynamic_nent),
-		    filedata->dynamic_addr,
-		    (unsigned long) filedata->dynamic_nent);
+      else
+	printf (ngettext ("\nDynamic section at offset 0x%lx contains %lu entry:\n",
+			  "\nDynamic section at offset 0x%lx contains %lu entries:\n",
+			  (unsigned long) filedata->dynamic_nent),
+		filedata->dynamic_addr,
+		(unsigned long) filedata->dynamic_nent);
     }
   if (do_dynamic)
     printf (_("  Tag        Type                         Name/Value\n"));


More information about the Binutils-cvs mailing list