Fix two broken macros.
This commit is contained in:
parent
2c899fede2
commit
6f3d2cdd00
@ -59,7 +59,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#if !defined IGNORE /* Macro to silence unused param warnings */
|
||||
#define IGNORE(x) &x
|
||||
#define IGNORE(x) (void)(x)
|
||||
#endif
|
||||
|
||||
/*
|
||||
@ -406,7 +406,7 @@ void *ficlRealloc(void *p, size_t size);
|
||||
#if FICL_MULTITHREAD
|
||||
int ficlLockDictionary(short fLock);
|
||||
#else
|
||||
#define ficlLockDictionary(x) 0 /* ignore */
|
||||
#define ficlLockDictionary(x) /* ignore */
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user