diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vox.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) { |