]> xenbits.xensource.com Git - qemu-xen-4.1-testing.git/commitdiff
Correct prototype for dpy_resize_shared (fix up merge damage)
authorIan Jackson <iwj@mariner.uk.xensource.com>
Wed, 4 Jun 2008 17:17:20 +0000 (18:17 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Wed, 4 Jun 2008 17:17:20 +0000 (18:17 +0100)
console.h

index 6cb34b90a9eed8e0caa82394452c0bff7413ce4c..1ec937a0e82f13332a0a40e0b03cdf36194f1867 100644 (file)
--- a/console.h
+++ b/console.h
@@ -81,7 +81,7 @@ struct DisplayState {
 
     void (*dpy_update)(struct DisplayState *s, int x, int y, int w, int h);
     void (*dpy_resize)(struct DisplayState *s, int w, int h);
-    void (*dpy_resize_shared)(struct DisplayState *s, int w, int h, int linesize);
+    void (*dpy_resize_shared)(struct DisplayState *s, int w, int h, int depth, int linesize, void *pixels);
     void (*dpy_setdata)(DisplayState *s, void *pixels);
     void (*dpy_refresh)(struct DisplayState *s);
     void (*dpy_copy)(struct DisplayState *s, int src_x, int src_y,