Replace the only occurrence of AVERROR_NOENT with AVERROR(ENOENT).

Originally committed as revision 9761 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Panagiotis Issaris 18 years ago
parent 6f3e0b2174
commit 24fddf48e7
  1. 2
      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:

Loading…
Cancel
Save