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]

[commit/obvious/ARI] Silence ARI warning because of non-internationalized string


Hi,

This is an obvious patch for the last ARI warning on probe.c.  I
committed under the obvious rule.

Thanks,

-- 
Sergio

P.S.: Sorry about the non-unified diff format, I forgot to generate it
with `-up', but I think it's pretty obvious.

Index: gdb/ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.14182
diff -r1.14182 ChangeLog
0a1,5
> 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
> 
> 	* probe.c (compile_rx_or_error): Silence ARI warning about missing
> 	 gettext function on `error'.
> 
Index: gdb/probe.c
===================================================================
RCS file: /cvs/src/src/gdb/probe.c,v
retrieving revision 1.1
diff -r1.1 probe.c
273c273
<       error ("%s: %s", message, err);
---
>       error (("%s: %s"), message, err);


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