Clean-up: silence warnings for generated code on RHEL8
authorMichael Jeanson <mjeanson@efficios.com>
Wed, 16 Mar 2022 14:46:33 +0000 (10:46 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 17 Mar 2022 17:16:45 +0000 (13:16 -0400)
  lttng_wrap.lo -MD -MP -MF .deps/lttng_wrap.Tpo -c lttng_wrap.c  -fPIC -DPIC -o .libs/lttng_wrap.o
  lttng_wrap.c:1824:23: warning: cast between incompatible function types from ‘PyObject * (*)(PyObject *)’ {aka ‘struct _object * (*)(struct _object *)’} to ‘PyObject * (*)(PyObject *, PyObject *)’ {aka ‘struct _object * (*)(struct _object *, struct _object *)’} [-Wcast-function-type]
     {(char *)"disown",  (PyCFunction)SwigPyObject_disown,  METH_NOARGS,  (char *)"releases ownership of the pointer"},
                         ^

Change-Id: I9258a58317814fdc94c8ce3c76e615b73aaf4199
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
extras/bindings/swig/python/Makefile.am

index 8eea69f32ea637021e0d42f01a12af821dd20aee..a8fd56d806ed300fc71aff206b51827c3b92d8f7 100644 (file)
@@ -12,6 +12,8 @@ AM_CFLAGS += -Wno-shadow
 
 AM_CFLAGS += -Wno-missing-field-initializers
 
+AM_CFLAGS += -Wno-cast-function-type
+
 AM_CPPFLAGS += $(PYTHON_INCLUDE)
 
 EXTRA_DIST = lttng.i.in
This page took 0.025011 seconds and 4 git commands to generate.