From: Karel Zak Date: Wed, 10 Feb 2021 09:47:27 +0000 (+0100) Subject: libmount: (py) do not use pointer as an integer value X-Git-Tag: v2.36.2~13 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=fd5ed9a4f5bc371794138528c56ae8053863741c;p=thirdparty%2Futil-linux.git libmount: (py) do not use pointer as an integer value Signed-off-by: Karel Zak --- diff --git a/libmount/python/context.c b/libmount/python/context.c index 6e3ffcb397..353a893f53 100644 --- a/libmount/python/context.c +++ b/libmount/python/context.c @@ -1179,7 +1179,7 @@ PyTypeObject ContextType = { sizeof(ContextObjext), /*tp_basicsize*/ 0, /*tp_itemsize*/ (destructor)Context_dealloc, /*tp_dealloc*/ - NULL, /*tp_print*/ + 0, /*tp_print*/ NULL, /*tp_getattr*/ NULL, /*tp_setattr*/ NULL, /*tp_compare*/