diff options
author | Dave Airlie <airlied@redhat.com> | 2012-06-06 17:17:09 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-06-06 17:17:09 +0100 |
commit | bb1b5865bc02341cfa1cc0d943fac59077643ea5 (patch) | |
tree | a0953de2a22040838e90bb42a285560db62fa6e1 /src | |
parent | f1a9c1b33bff038807755824190c69889ef6d794 (diff) |
qxl: fix spice build
reported by jenkins.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/qxl_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qxl_driver.c b/src/qxl_driver.c index b0250e5..5519f57 100644 --- a/src/qxl_driver.c +++ b/src/qxl_driver.c @@ -1011,7 +1011,7 @@ setup_uxa (qxl_screen_t *qxl, ScreenPtr screen) #ifdef XSPICE static void -spiceqxl_screen_init(int scrnIndex, ScrnInfoPtr pScrn, qxl_screen_t *qxl) +spiceqxl_screen_init(ScrnInfoPtr pScrn, qxl_screen_t *qxl) { SpiceCoreInterface *core; @@ -1046,7 +1046,7 @@ qxl_screen_init(SCREEN_INIT_ARGS_DECL) return FALSE; #ifdef XSPICE - spiceqxl_screen_init(scrnIndex, pScrn, qxl); + spiceqxl_screen_init(pScrn, qxl); #endif ram_header = (void *)((unsigned long)qxl->ram + (unsigned long)qxl->rom->ram_header_offset); |