Commit a147d62bf9d16db97d74ae2c65f43bd41493b06c
1 parent
e07d630a
Fix warnings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6346 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
2 changed files
with
3 additions
and
2 deletions
console.c
| ... | ... | @@ -1190,7 +1190,8 @@ static void text_console_update(void *opaque, console_ch_t *chardata) |
| 1190 | 1190 | } |
| 1191 | 1191 | } |
| 1192 | 1192 | |
| 1193 | -static TextConsole *get_graphic_console() { | |
| 1193 | +static TextConsole *get_graphic_console(void) | |
| 1194 | +{ | |
| 1194 | 1195 | int i; |
| 1195 | 1196 | TextConsole *s; |
| 1196 | 1197 | for (i = 0; i < nb_consoles; i++) { | ... | ... |
hw/ppc440_bamboo.c
| ... | ... | @@ -84,7 +84,7 @@ out: |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | static void bamboo_init(ram_addr_t ram_size, int vga_ram_size, |
| 87 | - const char *boot_device, DisplayState *ds, | |
| 87 | + const char *boot_device, | |
| 88 | 88 | const char *kernel_filename, |
| 89 | 89 | const char *kernel_cmdline, |
| 90 | 90 | const char *initrd_filename, | ... | ... |