jphickey/cfe-eds-framework

Casting errors in edslib_python_buffer.c when compiling on a 32-bit Raspberry Pi

dmccomas opened this issue · 1 comments

See the following compilation output:

2022-05-13-053106_1519x929_scrot

Yeah, these are bogus warnings, notably some of them are actually in the Python headers, not here (i.e. in the definition of the PyObject_New macro).

One workaround might be to use void instead of the real/intended pointer type. C will allow a void* to be implicitly cast to any other pointer type and won't issue a warning about it.