From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBHZ4-0004oN-M2 for qemu-devel@nongnu.org; Sat, 05 Jan 2008 17:32:26 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBHZ2-0004nM-L8 for qemu-devel@nongnu.org; Sat, 05 Jan 2008 17:32:26 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBHZ2-0004nD-6n for qemu-devel@nongnu.org; Sat, 05 Jan 2008 17:32:24 -0500 Received: from pop-satin.atl.sa.earthlink.net ([207.69.195.63]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JBHYw-00078D-K8 for qemu-devel@nongnu.org; Sat, 05 Jan 2008 17:32:23 -0500 Received: from user-142h2k8.cable.mindspring.com ([72.40.138.136] helo=earthlink.net) by pop-satin.atl.sa.earthlink.net with esmtp (Exim 3.36 #1) id 1JBHYj-0001gt-00 for qemu-devel@nongnu.org; Sat, 05 Jan 2008 17:32:05 -0500 Message-ID: <47800565.7080700@earthlink.net> Date: Sat, 05 Jan 2008 17:32:05 -0500 From: Robert Reif MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------050806070601010503020502" Subject: [Qemu-devel] [PATCH] hw/sun4m.c make error messages consistent Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------050806070601010503020502 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Make these 3 error messages consistent with the other 20 in the same file. --------------050806070601010503020502 Content-Type: text/plain; name="patch1.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch1.diff.txt" diff -p -u -r1.79 sun4m.c --- hw/sun4m.c 1 Jan 2008 20:57:25 -0000 1.79 +++ hw/sun4m.c 5 Jan 2008 22:26:07 -0000 @@ -385,7 +385,7 @@ static void sun4m_hw_init(const struct h for(i = 0; i < smp_cpus; i++) { env = cpu_init(cpu_model); if (!env) { - fprintf(stderr, "Unable to find Sparc CPU definition\n"); + fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n"); exit(1); } cpu_sparc_set_id(env, i); @@ -554,7 +554,7 @@ static void sun4c_hw_init(const struct h env = cpu_init(cpu_model); if (!env) { - fprintf(stderr, "Unable to find Sparc CPU definition\n"); + fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n"); exit(1); } @@ -1041,7 +1041,7 @@ static void sun4d_hw_init(const struct s for (i = 0; i < smp_cpus; i++) { env = cpu_init(cpu_model); if (!env) { - fprintf(stderr, "Unable to find Sparc CPU definition\n"); + fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n"); exit(1); } cpu_sparc_set_id(env, i); --------------050806070601010503020502--