From 3eca5150db07262c1c6eb737e12149201f631d47 Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Tue, 6 Aug 2019 13:42:06 +0200 Subject: [PATCH] swig: python: fix unresolved symbol issue GCC later than 5.x produce _fdti1.so file with an undefined symbol str2charp_size due to C99 inline semantics change. So remove this keyword. Signed-off-by: Yegor Yefremov --- python/ftdi1.i | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/python/ftdi1.i b/python/ftdi1.i index d53ebb0..f397f84 100644 --- a/python/ftdi1.i +++ b/python/ftdi1.i @@ -19,7 +19,7 @@ inline PyObject* charp2str(const char *v_, long len) #endif } -inline char * str2charp_size(PyObject* pyObj, int * size) +char * str2charp_size(PyObject* pyObj, int * size) { char * v_ = 0; Py_ssize_t len = 0; -- 1.7.1