Fixed wrong printf() string in InnoDB

Removed some compiler warnings regarding 'static' from InnoDB


Docs/manual.texi:
  Fixed wrong manual entry
innobase/btr/btr0cur.c:
  Fixed wrong printf() string
innobase/include/univ.i:
  Removed compiler warnings (static inline produces a lot of warnings and is probably not portable)
This commit is contained in:
unknown 2002-07-31 18:02:24 +03:00
commit e2cf3f8e45
3 changed files with 3 additions and 3 deletions

View file

@ -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 static inline
#define UNIV_INLINE inline
#endif
#endif