mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
Replace the only occurrence of AVERROR_NOENT with AVERROR(ENOENT).
Originally committed as revision 9761 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -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:
|
||||||
|
Reference in New Issue
Block a user