Restore missing LAZY_LOCKS semicolon.

Lost in C90 compat commit c5dad7a6d0.
This commit is contained in:
Hallvard Furuseth 2011-09-11 11:08:40 +02:00
parent 90ed553301
commit ed0fc55fd3

View 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