From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12835 invoked by alias); 13 Dec 2003 21:41:46 -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 12817 invoked from network); 13 Dec 2003 21:41:46 -0000 Received: from unknown (HELO zenia.home) (12.223.225.216) by sources.redhat.com with SMTP; 13 Dec 2003 21:41:46 -0000 Received: by zenia.home (Postfix, from userid 5433) id 7767820766; Sat, 13 Dec 2003 16:39:00 -0500 (EST) To: gdb-patches@sources.redhat.com Subject: PATCH: reformat warning message in gdbarch_init_osabi From: Jim Blandy Date: Sat, 13 Dec 2003 21:41:00 -0000 Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-12/txt/msg00361.txt.bz2 2003-12-13 Jim Blandy * osabi.c (gdbarch_init_osabi): Reformat error message with better line breaks. Index: gdb/osabi.c =================================================================== RCS file: /cvs/src/src/gdb/osabi.c,v retrieving revision 1.23 diff -c -r1.23 osabi.c *** gdb/osabi.c 27 Nov 2003 12:43:36 -0000 1.23 --- gdb/osabi.c 13 Dec 2003 21:39:23 -0000 *************** *** 347,357 **** } } ! warning ("A handler for the OS ABI \"%s\" is not built into this " ! "configuration of GDB. " ! "Attempting to continue with the default %s settings", ! gdbarch_osabi_name (info.osabi), ! info.bfd_arch_info->printable_name); } --- 347,357 ---- } } ! warning ! ("A handler for the OS ABI \"%s\" is not built into this configuration\n" ! "of GDB. Attempting to continue with the default %s settings.\n", ! gdbarch_osabi_name (info.osabi), ! info.bfd_arch_info->printable_name); }