From: Bruce Momjian Date: Fri, 29 Mar 2002 07:21:25 +0000 (+0000) Subject: Fix '#' commant to be proper C comment. X-Git-Tag: REL7_3~1822 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed6cce4c7b6024483d1de0d03cea4811cad9b291;p=postgresql Fix '#' commant to be proper C comment. --- diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c index 7adaa93bbe..3141a7ac14 100644 --- a/src/interfaces/python/pgmodule.c +++ b/src/interfaces/python/pgmodule.c @@ -35,7 +35,7 @@ #include #include -# PyObject_Del does not exist in older versions of Python. +/* PyObject_Del does not exist in older versions of Python. */ #if PY_VERSION_HEX < 0x01060000 #define PyObject_Del(op) PyMem_Del((op)) #endif