mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-01 14:15:49 +08:00
Fix previous commit: backslash-space-newline -> backslash-newline
This commit is contained in:
parent
02fa0b0235
commit
dc26fb37eb
@ -108,7 +108,7 @@ bdb_cache_entryinfo_free( Cache *cache, EntryInfo *ei )
|
||||
#define LRU_DEL( c, e ) do { \
|
||||
if ( e == e->bei_lruprev ) { \
|
||||
(c)->c_lruhead = (c)->c_lrutail = NULL; \
|
||||
} else { \
|
||||
} else { \
|
||||
if ( e == (c)->c_lruhead ) (c)->c_lruhead = e->bei_lruprev; \
|
||||
if ( e == (c)->c_lrutail ) (c)->c_lrutail = e->bei_lruprev; \
|
||||
e->bei_lrunext->bei_lruprev = e->bei_lruprev; \
|
||||
|
Loading…
Reference in New Issue
Block a user