fixes by Art Haas <ahaas@airmail.net>:

rewritten with C99 struct initialization style.
This commit is contained in:
Takashi Iwai 2003-07-25 17:02:00 +00:00
parent c18c32b26c
commit 7716fd1e3d
33 changed files with 762 additions and 762 deletions

View file

@ -166,11 +166,11 @@ static int snd_output_stdio_flush(snd_output_t *output)
}
static snd_output_ops_t snd_output_stdio_ops = {
close: snd_output_stdio_close,
print: snd_output_stdio_print,
puts: snd_output_stdio_puts,
putch: snd_output_stdio_putc,
flush: snd_output_stdio_flush,
.close = snd_output_stdio_close,
.print = snd_output_stdio_print,
.puts = snd_output_stdio_puts,
.putch = snd_output_stdio_putc,
.flush = snd_output_stdio_flush,
};
#endif
@ -318,11 +318,11 @@ static int snd_output_buffer_flush(snd_output_t *output ATTRIBUTE_UNUSED)
}
static snd_output_ops_t snd_output_buffer_ops = {
close: snd_output_buffer_close,
print: snd_output_buffer_print,
puts: snd_output_buffer_puts,
putch: snd_output_buffer_putc,
flush: snd_output_buffer_flush,
.close = snd_output_buffer_close,
.print = snd_output_buffer_print,
.puts = snd_output_buffer_puts,
.putch = snd_output_buffer_putc,
.flush = snd_output_buffer_flush,
};
#endif