From: Hallvard Furuseth Date: Thu, 14 Jul 2005 03:06:58 +0000 (+0000) Subject: Silence "empty statement" warnings X-Git-Tag: OPENLDAP_AC_BP~410 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ae385b3af09488332806afb813711de9cba2addf;p=openldap Silence "empty statement" warnings --- diff --git a/servers/slapd/back-bdb/proto-bdb.h b/servers/slapd/back-bdb/proto-bdb.h index ec2dcea4ff..8a627c017b 100644 --- a/servers/slapd/back-bdb/proto-bdb.h +++ b/servers/slapd/back-bdb/proto-bdb.h @@ -413,7 +413,7 @@ void bdb_cache_return_entry_rw( DB_ENV *env, Cache *cache, Entry *e, #if 0 void bdb_unlocked_cache_return_entry_rw( Cache *cache, Entry *e, int rw ); #else -#define bdb_unlocked_cache_return_entry_rw( a, b, c ) +#define bdb_unlocked_cache_return_entry_rw( a, b, c ) ((void)0) #endif #define bdb_unlocked_cache_return_entry_r( c, e ) \ bdb_unlocked_cache_return_entry_rw((c), (e), 0) @@ -524,7 +524,7 @@ int bdb_cache_entry_db_unlock( #define bdb_locker_id BDB_SYMBOL(locker_id) int bdb_locker_id( Operation *op, DB_ENV *env, int *locker ); -#define LOCK_ID_FREE(env, locker) +#define LOCK_ID_FREE(env, locker) ((void)0) #define LOCK_ID(env, locker) bdb_locker_id(op, env, locker) #else