]> git.sur5r.net Git - openldap/commitdiff
Restore missing LAZY_LOCKS semicolon.
authorHallvard Furuseth <hallvard@openldap.org>
Sun, 11 Sep 2011 09:08:40 +0000 (11:08 +0200)
committerHallvard Furuseth <hallvard@openldap.org>
Sun, 11 Sep 2011 17:29:24 +0000 (19:29 +0200)
Lost in C90 compat commit c5dad7a6d0eb1b3597beda18b38fe92820df0d30.

libraries/libmdb/mdb.c

index db4db98116f7c66f2c2a4846e300b27293abcd39..a101a7af9a14779d4ca3cce5aae46931828d3665 100644 (file)
@@ -292,7 +292,7 @@ typedef ID  txnid_t;
 #define        LAZY_RWLOCK_UNLOCK(x)   pthread_rwlock_unlock(x)
 #define        LAZY_RWLOCK_WRLOCK(x)   pthread_rwlock_wrlock(x)
 #define        LAZY_RWLOCK_RDLOCK(x)   pthread_rwlock_rdlock(x)
-#define        LAZY_RWLOCK_DEF(x)              pthread_rwlock_t        x
+#define        LAZY_RWLOCK_DEF(x)              pthread_rwlock_t        x;
 #define        LAZY_RWLOCK_INIT(x,y)   pthread_rwlock_init(x,y)
 #define        LAZY_RWLOCK_DESTROY(x)  pthread_rwlock_destroy(x)
 #endif