Browse code

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

Originally committed as revision 9761 to svn://svn.ffmpeg.org/ffmpeg/trunk

Panagiotis Issaris authored on 2007/07/20 00:24:58
Showing 1 changed files
... ...
@@ -141,7 +141,7 @@ void print_error(const char *filename, int err)
141 141
     case AVERROR(ENOMEM):
142 142
         fprintf(stderr, "%s: memory allocation error occured\n", filename);
143 143
         break;
144
-    case AVERROR_NOENT:
144
+    case AVERROR(ENOENT):
145 145
         fprintf(stderr, "%s: no such file or directory\n", filename);
146 146
         break;
147 147
     default: