summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vox.c b/src/vox.c
index caa3a26..e41fdd7 100644
--- a/src/vox.c
+++ b/src/vox.c
@@ -208,9 +208,9 @@ error_read:
return -1;
}
-xas_vox *xas_vox_new(const char *text2wave_path,
- xas_audio_format format,
- size_t buffer_size) {
+xas_vox *xas_vox_new(xas_audio_format format,
+ size_t buffer_size,
+ const char *text2wave_path) {
xas_vox *vox;
if ((vox = malloc(sizeof(*vox))) == NULL) {