Commit f3fa4e6a authored by William Lee Irwin III's avatar William Lee Irwin III Committed by Linus Torvalds

[PATCH] remove unnecessary parentheses from expand()

Not sure why I forgot to do this, but here is a small bit of tidying up
of some leftover parentheses from the memlist macro removal. The
parentheses are just noise and should go.
parent fcec5d01
......@@ -178,7 +178,7 @@ static inline struct page * expand (zone_t *zone, struct page *page,
area--;
high--;
size >>= 1;
list_add(&(page)->list, &(area)->free_list);
list_add(&page->list, &area->free_list);
MARK_USED(index, high, area);
index += size;
page += size;
......
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