diff matroskadec.c @ 2276:3c1e2d519277 libavformat

Replace all occurrences of AVERROR_NOTSUPP with AVERROR(ENOSYS).
author takis
date Thu, 19 Jul 2007 15:38:33 +0000
parents b21c2af60bc9
children 7c31128b23f8
line wrap: on
line diff
--- a/matroskadec.c	Thu Jul 19 15:37:44 2007 +0000
+++ b/matroskadec.c	Thu Jul 19 15:38:33 2007 +0000
@@ -547,7 +547,7 @@
     if (matroska->num_levels >= EBML_MAX_DEPTH) {
         av_log(matroska->ctx, AV_LOG_ERROR,
                "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH);
-        return AVERROR_NOTSUPP;
+        return AVERROR(ENOSYS);
     }
 
     /* remember level */