diff options
| author | pooryorick <com.digitalsmarties@pooryorick.com> | 2017-12-13 12:56:02 (GMT) |
|---|---|---|
| committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2017-12-13 12:56:02 (GMT) |
| commit | 3ddcb1cfb5dd70afa094e3113ab1946df9cbe222 (patch) | |
| tree | becf7911782e562bc49ace7a44cefef763c60ed0 | |
| parent | 0239e7e77f3f12c24179f6c021d3f7b40dfcf981 (diff) | |
| download | tcl-3ddcb1cfb5dd70afa094e3113ab1946df9cbe222.zip tcl-3ddcb1cfb5dd70afa094e3113ab1946df9cbe222.tar.gz tcl-3ddcb1cfb5dd70afa094e3113ab1946df9cbe222.tar.bz2 | |
Fix syntax error in previous commit.
| -rw-r--r-- | generic/tclOO.c | 4 |
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) /* * ---------------------------------------------------------------------- |
