From dd764d999ee270d3e3ad5e14881b7b16c247d762 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 1 Aug 2002 00:37:27 +0300 Subject: Innodb fixes: Added back 'static inline', as not having this caused more problems than having it Fixed wrong arguments to printf() innobase/buf/buf0buf.c: Fixed wrong argument to printf() innobase/fsp/fsp0fsp.c: Fixed wrong argument to printf() innobase/include/btr0btr.h: Removed UNIV_INLINE for functions that should not be inlined innobase/include/dyn0dyn.h: Removed UNIV_INLINE for functions that should not be inlined innobase/include/univ.i: Added back 'static inline', as not having this caused more problems than having it --- innobase/include/univ.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'innobase/include/univ.i') diff --git a/innobase/include/univ.i b/innobase/include/univ.i index 8a9637acfda..15a6115c37e 100644 --- a/innobase/include/univ.i +++ b/innobase/include/univ.i @@ -116,7 +116,7 @@ memory is read outside the allocated blocks. */ #define UNIV_INLINE extern inline #else /* extern inline doesn't work with gcc 3.0.2 */ -#define UNIV_INLINE inline +#define UNIV_INLINE static inline #endif #endif -- cgit v1.2.1