commit | 425154d88803b6a9a74d1ef6c782860fc390b635 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri May 24 18:58:43 2013 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri May 24 18:58:43 2013 +0200 |
tree | d09017f98ea13860e486479d4d003cb0716277d6 | |
parent | 02e26d9807295ffddf575f0dd52cf343ab087d33 [diff] [blame] |
updated for version 7.3.1009 Problem: Compiler warning for ambiguous else. Solution: Add curly braces.
diff --git a/src/if_py_both.h b/src/if_py_both.h index 777e7da..5ecc239 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h
@@ -2163,7 +2163,9 @@ TabPageObject *tabObject = self->tabObject; if (tabObject) + { Py_DECREF((PyObject *)(tabObject)); + } DESTRUCTOR_FINISH(self); }