Skip to content
Snippets Groups Projects
Commit 24fddf48 authored by Panagiotis Issaris's avatar Panagiotis Issaris
Browse files

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

Originally committed as revision 9761 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6f3e0b21
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment