diff utils.c @ 2274:b21c2af60bc9 libavformat

Replace all occurrences of AVERROR_IO with AVERROR(EIO).
author takis
date Thu, 19 Jul 2007 15:23:32 +0000
parents 7eb456c4ed8a
children 3c1e2d519277
line wrap: on
line diff
--- a/utils.c	Thu Jul 19 15:21:30 2007 +0000
+++ b/utils.c	Thu Jul 19 15:23:32 2007 +0000
@@ -449,7 +449,7 @@
                 url_fclose(pb);
                 if (url_fopen(pb, filename, URL_RDONLY) < 0) {
                     file_opened = 0;
-                    err = AVERROR_IO;
+                    err = AVERROR(EIO);
                     goto fail;
                 }
             }