Commit 846c54a72d48f4381278e970db3010fbdf7f55e5

Authored by aliguori
1 parent e3697092

Fix compilation of blizzard.c

ppm_save's signature changed so it needs updating.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>



git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6350 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
hw/blizzard.c
@@ -939,7 +939,7 @@ static void blizzard_screen_dump(void *opaque, const char *filename) { @@ -939,7 +939,7 @@ static void blizzard_screen_dump(void *opaque, const char *filename) {
939 939
940 blizzard_update_display(opaque); 940 blizzard_update_display(opaque);
941 if (s && ds_get_data(s->state)) 941 if (s && ds_get_data(s->state))
942 - ppm_save(filename, ds_get_data(s->state), s->x, s->y, ds_get_linesize(s->state)); 942 + ppm_save(filename, s->state);
943 } 943 }
944 944
945 #define DEPTH 8 945 #define DEPTH 8