diff vocdec.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/vocdec.c	Thu Jul 19 15:21:30 2007 +0000
+++ b/vocdec.c	Thu Jul 19 15:23:32 2007 +0000
@@ -73,7 +73,7 @@
     while (!voc->remaining_size) {
         type = get_byte(pb);
         if (type == VOC_TYPE_EOF)
-            return AVERROR_IO;
+            return AVERROR(EIO);
         voc->remaining_size = get_le24(pb);
         max_size -= 4;