From: Andre Noll Date: Thu, 31 Dec 2009 17:39:25 +0000 (+0100) Subject: write.c: Fix cut'n'paste typo. X-Git-Tag: v0.4.2~222 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=17f54c787aa4bc0082bc0cb8ae57f98f9c258cfa write.c: Fix cut'n'paste typo. --- diff --git a/write.c b/write.c index def31334..c76b6c46 100644 --- a/write.c +++ b/write.c @@ -134,6 +134,7 @@ static int check_wav_exec(struct btr_node *btrn, const char *cmd, char **result) { struct check_wav_task_btr *cwt = btr_context(btrn); + if (!strcmp(cmd, "samplerate")) { if (cwt->state != CWS_HAVE_HEADER) return -ERRNO_TO_PARA_ERROR(ENAVAIL); @@ -143,7 +144,7 @@ static int check_wav_exec(struct btr_node *btrn, const char *cmd, char **result) if (!strcmp(cmd, "channels")) { if (cwt->state != CWS_HAVE_HEADER) return -ERRNO_TO_PARA_ERROR(ENAVAIL); - *result = make_message("%d", cwt->samplerate); + *result = make_message("%d", cwt->channels); return 1; } return -ERRNO_TO_PARA_ERROR(ENOTSUP);