summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/test.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/test.c b/examples/test.c
index 2579952..ec70a8e 100644
--- a/examples/test.c
+++ b/examples/test.c
@@ -81,12 +81,12 @@ int main(int argc, char **argv) {
usage(argc, argv, "No output file provided");
}
- if ((wave = xas_riff_file_open(argv[1],
- XAS_AUDIO_STREAM_PCM_16_BIT,
- sample_rate,
- XAS_AUDIO_STREAM_STEREO,
- O_WRONLY | O_CREAT | O_TRUNC)) == NULL) {
- goto error_riff_file_open;
+ if ((wave = xas_riff_file_new(argv[1],
+ XAS_AUDIO_STREAM_PCM_16_BIT,
+ sample_rate,
+ XAS_AUDIO_STREAM_STEREO,
+ O_WRONLY | O_CREAT | O_TRUNC)) == NULL) {
+ goto error_riff_file_new;
}
if ((synth_l = xas_synth_new(XAS_AUDIO_STREAM_PCM_16_BIT,
@@ -160,6 +160,6 @@ error_synth_new_r:
error_synth_new_l:
xas_audio_stream_destroy(wave);
-error_riff_file_open:
+error_riff_file_new:
return EX_OSERR;
}