When compiling under Apple LLVM version 9.1.0 (clang-902.0.39.2) with "make DEVELOPER=1 DEVOPTS=pedantic", the compiler says remote-odb.c:87:2: error: static function 'remote_odb_do_init' is used in an inline function with external linkage [-Werror,-Wstatic-in-inline] Remove the inline specifier that would only make sense if remote_odb_reinit were defined in the header file. Moving it into the header is not possible because the called function remote_odb_do_init is static and thus not visible from the includers of the header. Signed-off-by: Beat Bolli <dev+git@xxxxxxxxx> --- remote-odb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote-odb.c b/remote-odb.c index 847a86505778..49cf8e30aa92 100644 --- a/remote-odb.c +++ b/remote-odb.c @@ -82,7 +82,7 @@ static inline void remote_odb_init(void) remote_odb_do_init(0); } -inline void remote_odb_reinit(void) +void remote_odb_reinit(void) { remote_odb_do_init(1); } -- 2.18.0