[PATCH] binutils/readelf: fix indentation in process_dynamic_section

Simon Marchi simon.marchi@polymtl.ca
Fri Mar 4 15:58:46 GMT 2022


I pushed this, since it's quite trivial.  I added a ChangeLog entry, which I initially
forgot.

Simon

On 2022-02-25 17:24, Simon Marchi wrote:
> Clangd shows a warning about misleading indentation in this file, fix
> it.
> 
> Change-Id: I43a7f4f4c75dd080af614222b980526f5debf297
> ---
>  binutils/readelf.c | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/binutils/readelf.c b/binutils/readelf.c
> index b208db593342..16efe1dfd2db 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"));
> 
> base-commit: 820ed8af6a757408873d8955a2db03b0989fdaeb


More information about the Binutils mailing list