Fix CLANG compile: local inline functions _have_ to be static.
authorWilfried Goesgens <dothebart@citadel.org>
Mon, 22 Dec 2014 17:09:00 +0000 (18:09 +0100)
committerWilfried Goesgens <dothebart@citadel.org>
Mon, 22 Dec 2014 17:09:00 +0000 (18:09 +0100)
webcit/msg_renderers.c

index 64518a40574501e5af15dab5bbe43c0a07595f34..9fd7285dc9fe0f8b4dd4eadc0fb255b2c30e184c 100644 (file)
@@ -5,7 +5,7 @@
 CtxType CTX_MAILSUM = CTX_NONE;
 CtxType CTX_MIME_ATACH = CTX_NONE;
 
-inline void CheckConvertBufs(struct wcsession *WCC)
+static inline void CheckConvertBufs(struct wcsession *WCC)
 {
        if (WCC->ConvertBuf1 == NULL)
                WCC->ConvertBuf1 = NewStrBuf();