Commit edaacca0 authored by marko's avatar marko

branches/zip: buf_buddy_relocate(): Split some lines differently on

popular demand.
parent 76c69c36
......@@ -178,12 +178,11 @@ buf_buddy_relocate(
UT_LIST_REMOVE(LRU, buf_pool->LRU, bpage);
if (b) {
UT_LIST_INSERT_AFTER(LRU,
buf_pool->LRU,
b, dpage);
UT_LIST_INSERT_AFTER(
LRU, buf_pool->LRU, b, dpage);
} else {
UT_LIST_ADD_FIRST(LRU, buf_pool->LRU,
dpage);
UT_LIST_ADD_FIRST(
LRU, buf_pool->LRU, dpage);
}
/* relocate buf_pool->zip_clean */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment