From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LNvL6-00020c-PG for qemu-devel@nongnu.org; Fri, 16 Jan 2009 15:30:48 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LNvL5-00020M-8C for qemu-devel@nongnu.org; Fri, 16 Jan 2009 15:30:48 -0500 Received: from [199.232.76.173] (port=51385 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LNvL5-00020H-23 for qemu-devel@nongnu.org; Fri, 16 Jan 2009 15:30:47 -0500 Received: from qw-out-1920.google.com ([74.125.92.144]:62438) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LNvL4-0001P3-OM for qemu-devel@nongnu.org; Fri, 16 Jan 2009 15:30:46 -0500 Received: by qw-out-1920.google.com with SMTP id 5so385902qwc.4 for ; Fri, 16 Jan 2009 12:30:45 -0800 (PST) Message-ID: <4970EE6A.9090301@codemonkey.ws> Date: Fri, 16 Jan 2009 14:30:34 -0600 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [6351] Fix a warning in hw/blizzard.c References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 Aurelien Jarno wrote: > Revision: 6351 > http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6351 > Author: aurel32 > Date: 2009-01-16 20:07:19 +0000 (Fri, 16 Jan 2009) > > Log Message: > ----------- > Fix a warning in hw/blizzard.c > > Signed-off-by: Aurelien Jarno > > Modified Paths: > -------------- > trunk/hw/blizzard.c > > Modified: trunk/hw/blizzard.c > =================================================================== > --- trunk/hw/blizzard.c 2009-01-16 19:51:14 UTC (rev 6350) > +++ trunk/hw/blizzard.c 2009-01-16 20:07:19 UTC (rev 6351) > @@ -939,7 +939,7 @@ > > blizzard_update_display(opaque); > if (s && ds_get_data(s->state)) > - ppm_save(filename, s->state); > + ppm_save(filename, s->state->surface); > Good catch. Regards, Anthony Liguori > } > > #define DEPTH 8 > > > > >