From f3fa4e6aba442413ceb373649c6aabfd142932cf Mon Sep 17 00:00:00 2001 From: William Lee Irwin III Date: Wed, 19 Jun 2002 23:54:23 -0700 Subject: [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. --- mm/page_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 9aabaf3adbe9..cf914bd8180b 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -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; -- cgit v1.2.3