From: Panagiotis Issaris Date: Thu, 19 Jul 2007 15:24:58 +0000 (+0000) Subject: Replace the only occurrence of AVERROR_NOENT with AVERROR(ENOENT). X-Git-Tag: v0.5~8233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24fddf48e7da763610bfb148fb876eb50265847b;p=platform%2Fupstream%2Flibav.git Replace the only occurrence of AVERROR_NOENT with AVERROR(ENOENT). Originally committed as revision 9761 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/cmdutils.c b/cmdutils.c index e5142e645..1c2f44ef3 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -141,7 +141,7 @@ void print_error(const char *filename, int err) case AVERROR(ENOMEM): fprintf(stderr, "%s: memory allocation error occured\n", filename); break; - case AVERROR_NOENT: + case AVERROR(ENOENT): fprintf(stderr, "%s: no such file or directory\n", filename); break; default: