Skip to content
Snippets Groups Projects
Commit 00fc6346 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

Fix previous commit: backslash-space-newline -> backslash-newline

parent bd790cf7
No related branches found
No related tags found
No related merge requests found
......@@ -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; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment