diff options
| author | William Lee Irwin III <wli@holomorphy.com> | 2002-06-19 23:54:23 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-06-19 23:54:23 -0700 |
| commit | f3fa4e6aba442413ceb373649c6aabfd142932cf (patch) | |
| tree | 07b1cdc4a12dbf8df2e6e87406be44ef2403cdeb | |
| parent | fcec5d011076c3479cac7f8756d45b4844a4e84b (diff) | |
[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.
| -rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
