[FFmpeg-cvslog] r9761 - trunk/cmdutils.c

takis subversion
Thu Jul 19 17:24:58 CEST 2007


Author: takis
Date: Thu Jul 19 17:24:58 2007
New Revision: 9761

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


Modified:
   trunk/cmdutils.c

Modified: trunk/cmdutils.c
==============================================================================
--- trunk/cmdutils.c	(original)
+++ trunk/cmdutils.c	Thu Jul 19 17:24:58 2007
@@ -141,7 +141,7 @@ void print_error(const char *filename, i
     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:




More information about the ffmpeg-cvslog mailing list