From 296b58a79e21be1b575869c7b37cc06d7c6c2a41 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 17 Feb 2021 12:25:49 +0100 Subject: [PATCH] libmount: (python) fix compiler warning Signed-off-by: Karel Zak --- libmount/python/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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*/ -- 2.47.3