X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=write.c;h=bf178c47ef1c7ffb0dcfcf80fd465516da6a72b9;hp=d88633592127aa3ac7f037b6351854d95b3e7129;hb=9609fd30e0d3db45ede3ab5c6bc3a77c15b6aef8;hpb=5ec0d9ef2189e22b3ee80f661196b6ae0593a525 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; }