From 799b4c0346195c3d3758f5aaf5ffc3b8c87a055b Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Tue, 21 Oct 2014 19:23:44 +0100 Subject: [PATCH] fix a case where a comparison entered the enext member of the switch. This was introduced to get rid of eclipse warnings :( --- C/absmi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C/absmi.c b/C/absmi.c index 0b2019cac..cf35260f1 100755 --- a/C/absmi.c +++ b/C/absmi.c @@ -12081,6 +12081,8 @@ Yap_absmi(int inp) PREG = NEXTOP(PREG, l); GONext(); } + PREG = PREG->y_u.l.l; + GONext(); break; default: PREG = PREG->y_u.l.l;