From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5229 invoked by alias); 9 Mar 2005 23:37:22 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 5010 invoked from network); 9 Mar 2005 23:37:11 -0000 Received: from unknown (HELO webmail.streamline-computing.com) (82.133.39.164) by sourceware.org with SMTP; 9 Mar 2005 23:37:11 -0000 Received: from [80.6.111.103] (helo=cpc2-oxfd5-5-0-cust103.oxfd.cable.ntl.com) by webmail.streamline-computing.com with asmtp (Exim 3.35 #1 (Debian)) id 1D9Ak0-0005eb-00 for ; Wed, 09 Mar 2005 23:37:24 +0000 Subject: [COMMIT] Obvious - compilation failure in proc-api.c From: David Lecomber To: patches Content-Type: text/plain Date: Wed, 09 Mar 2005 23:37:00 -0000 Message-Id: <1110411905.8084.34.camel@cpc2-oxfd5-5-0-cust103.oxfd.cable.ntl.com> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-SW-Source: 2005-03/txt/msg00161.txt.bz2 Dear all, It's been a while since I committed something, but here's one for the obvious fix rule. Someone prod me if I forgot to do something ;-) The old version failed to compile with Sun's Forte tools on Solaris 10 for Opteron (and you should've seen the code formatting!) Regards David 2005-03-09 David Lecomber * proc-api.c (_initialize_proc_api): Fix invalid multi-line i18n text. Index: proc-api.c =================================================================== RCS file: /cvs/src/src/gdb/proc-api.c,v retrieving revision 1.22 retrieving revision 1.23 diff -c -p -r1.22 -r1.23 *** proc-api.c 18 Feb 2005 15:25:27 -0000 1.22 --- proc-api.c 9 Mar 2005 23:33:52 -0000 1.23 *************** _initialize_proc_api (void) *** 780,795 **** { struct cmd_list_element *c; ! add_setshow_boolean_cmd ("procfs-trace", no_class, &procfs_trace, _("\ ! Set tracing for /proc api calls."), _("\ ! Show tracing for /proc api calls."), NULL, set_procfs_trace_cmd, NULL, /* FIXME: i18n: */ &setlist, &showlist); ! add_setshow_filename_cmd ("procfs-file", no_class, &procfs_filename, _("\ ! Set filename for /proc tracefile."), _("\ ! Show filename for /proc tracefile."), NULL, set_procfs_file_cmd, NULL, /* FIXME: i18n: */ &setlist, &showlist); --- 780,795 ---- { struct cmd_list_element *c; ! add_setshow_boolean_cmd ("procfs-trace", no_class, &procfs_trace, ! _("Set tracing for /proc api calls."), ! _("Show tracing for /proc api calls."), NULL, set_procfs_trace_cmd, NULL, /* FIXME: i18n: */ &setlist, &showlist); ! add_setshow_filename_cmd ("procfs-file", no_class, &procfs_filename, ! _("Set filename for /proc tracefile."), ! _("Show filename for /proc tracefile."), NULL, set_procfs_file_cmd, NULL, /* FIXME: i18n: */ &setlist, &showlist); -- David Lecomber