From 4734fb0eced88680d820644582b92212295460a9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 18 Dec 2011 03:53:50 +0100 Subject: [PATCH] sbgdec: Replace ELOOP by -1 to fix compilation on win32. This should be replaced by a more appropriate error code of course but we should not leave compilation broken until that is decided. Found-by: jb Signed-off-by: Michael Niedermayer --- libavformat/sbgdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c index da4bb6c536..b1950a3c91 100644 --- a/libavformat/sbgdec.c +++ b/libavformat/sbgdec.c @@ -948,7 +948,7 @@ static int expand_tseq(void *log, struct sbg_script *s, int *nb_ev_max, if (tseq->lock++) { av_log(log, 16, "Recursion loop on \"%.*s\"\n", tseq->name_len, tseq->name); - return AVERROR(ELOOP); + return -1; } t0 += tseq->ts.t; for (i = 0; i < s->nb_def; i++) { -- 2.11.0