summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2017-12-13 12:56:02 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2017-12-13 12:56:02 (GMT)
commit3ddcb1cfb5dd70afa094e3113ab1946df9cbe222 (patch)
treebecf7911782e562bc49ace7a44cefef763c60ed0
parent0239e7e77f3f12c24179f6c021d3f7b40dfcf981 (diff)
downloadtcl-3ddcb1cfb5dd70afa094e3113ab1946df9cbe222.zip
tcl-3ddcb1cfb5dd70afa094e3113ab1946df9cbe222.tar.gz
tcl-3ddcb1cfb5dd70afa094e3113ab1946df9cbe222.tar.bz2
Fix syntax error in previous commit.
-rw-r--r--generic/tclOO.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclOO.c b/generic/tclOO.c
index 1a9bfc4..0243c15 100644
--- a/generic/tclOO.c
+++ b/generic/tclOO.c
@@ -238,8 +238,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)
/*
* ----------------------------------------------------------------------