From dafcde170207b3a02998280dd3b72522e7f4dfb2 Mon Sep 17 00:00:00 2001 From: pooryorick Date: Thu, 15 Feb 2018 09:40:40 +0000 Subject: Fix syntax error in previous commit. --- generic/tclOO.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generic/tclOO.c b/generic/tclOO.c index 4915b5d..0fcf159 100644 --- a/generic/tclOO.c +++ b/generic/tclOO.c @@ -237,8 +237,8 @@ MODULE_SCOPE const TclOOStubs tclOOStubs; #define RemoveItem(type, lst, i) \ do { \ Remove ## type ((lst).list, (lst).num, i); \ - (lst).num-- \ - } while 0 + (lst).num--; \ + } while (0) /* * ---------------------------------------------------------------------- -- cgit v0.12