Commit 25558f2d authored by takis's avatar takis

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9761 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ccd06a17
...@@ -141,7 +141,7 @@ void print_error(const char *filename, int err) ...@@ -141,7 +141,7 @@ void print_error(const char *filename, int err)
case AVERROR(ENOMEM): case AVERROR(ENOMEM):
fprintf(stderr, "%s: memory allocation error occured\n", filename); fprintf(stderr, "%s: memory allocation error occured\n", filename);
break; break;
case AVERROR_NOENT: case AVERROR(ENOENT):
fprintf(stderr, "%s: no such file or directory\n", filename); fprintf(stderr, "%s: no such file or directory\n", filename);
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment