commit | 3436900a5af18a681f8075ad91e87eb35425b8ef | [log] [tgz] |
---|---|---|
author | Kristján Valur Jónsson <kristjan@ccpgames.com> | Mon Sep 28 15:57:53 2009 +0000 |
committer | Kristján Valur Jónsson <kristjan@ccpgames.com> | Mon Sep 28 15:57:53 2009 +0000 |
tree | a4d98f627d8e2947fc36197679d7c59fc8725963 | |
parent | ae4cfb1bb3a6a597d6daec2620d321279c15eab4 [diff] |
merging revision 75106 from trunk: http://bugs.python.org/issue6836 A missing 'const' wasn't detected by Visual Studio.
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index b2c053f..9cf90c4 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c
@@ -1369,7 +1369,7 @@ _PyObject_DebugFreeApi(_PYMALLOC_OBJ_ID, p); } void -_PyObject_DebugCheckAddress(void *p) +_PyObject_DebugCheckAddress(const void *p) { _PyObject_DebugCheckAddressApi(_PYMALLOC_OBJ_ID, p); }