X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=write.c;h=bf178c47ef1c7ffb0dcfcf80fd465516da6a72b9;hp=d88633592127aa3ac7f037b6351854d95b3e7129;hb=7964fd8324c24679ca2ec85b6e9589f24079e089;hpb=f42b5eccb6ec3364dc0500ffeffbe9d9ecab07bd diff --git a/write.c b/write.c index d8863359..bf178c47 100644 --- a/write.c +++ b/write.c @@ -74,13 +74,13 @@ static int check_wav_exec(struct btr_node *btrn, const char *cmd, char **result) if (!strcmp(cmd, "samplerate")) { if (cwt->state != CWS_HAVE_HEADER) - return -ERRNO_TO_PARA_ERROR(ENAVAIL); + return -E_BTR_NAVAIL; *result = make_message("%d", cwt->samplerate); return 1; } if (!strcmp(cmd, "channels")) { if (cwt->state != CWS_HAVE_HEADER) - return -ERRNO_TO_PARA_ERROR(ENAVAIL); + return -E_BTR_NAVAIL; *result = make_message("%d", cwt->channels); return 1; }