Browse Source

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

Originally committed as revision 9761 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris 18 years ago
parent
commit
24fddf48e7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmdutils.c

+ 1
- 1
cmdutils.c View File

@@ -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