This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] gdb: Fix ARI warnings in or1k-tdep.c


Hello,

A very minor thing:

> diff --git a/gdb/or1k-tdep.c b/gdb/or1k-tdep.c
> index 54b365e958..06ee53e83c 100644
> --- a/gdb/or1k-tdep.c
> +++ b/gdb/or1k-tdep.c
> @@ -132,7 +132,7 @@ or1k_analyse_inst (uint32_t inst, const char *format, ...)
>  
>  	  /* Check we got something, and if so skip on.  */
>  	  if (start_ptr == end_ptr)
> -	    error ("bitstring \"%s\" at offset %d has no length field.\n",
> +	    error (_("bitstring \"%s\" at offset %d has no length field."),
>  			format, i);

The second line in the error looks over indented to me. I think
it ought to be aligned with the other arguments on the first line:

	    error (_("bitstring \"%s\" at offset %d has no length field."),
		   format, i);

(I think I saw about 3 instances of the same alignment issue)

-- 
Joel


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]