From 3436900a5af18a681f8075ad91e87eb35425b8ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Valur=20J=C3=B3nsson?= Date: Mon, 28 Sep 2009 15:57:53 +0000 Subject: merging revision 75106 from trunk: http://bugs.python.org/issue6836 A missing 'const' wasn't detected by Visual Studio. --- Objects/obmalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_DebugFree(void *p) _PyObject_DebugFreeApi(_PYMALLOC_OBJ_ID, p); } void -_PyObject_DebugCheckAddress(void *p) +_PyObject_DebugCheckAddress(const void *p) { _PyObject_DebugCheckAddressApi(_PYMALLOC_OBJ_ID, p); } -- cgit v0.12