remove unnecessary parentheses from expand()

William Lee Irwin III (wli@holomorphy.com)
Sat, 15 Jun 2002 11:20:20 -0700


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.

Cheers,
Bill

===== mm/page_alloc.c 1.67 vs edited =====
--- 1.67/mm/page_alloc.c Mon Jun 3 08:25:10 2002
+++ edited/mm/page_alloc.c Sat Jun 15 11:16:21 2002
@@ -173,7 +173,7 @@
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;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/