mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 10:39:34 -05:00
Fix previous commit: backslash-space-newline -> backslash-newline
This commit is contained in:
parent
02fa0b0235
commit
dc26fb37eb
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue