* remove unnecessary parentheses from expand()
@ 2002-06-15 18:20 William Lee Irwin III
0 siblings, 0 replies; only message in thread
From: William Lee Irwin III @ 2002-06-15 18:20 UTC (permalink / raw)
To: linux-kernel; +Cc: trivial
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;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-06-15 18:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-15 18:20 remove unnecessary parentheses from expand() William Lee Irwin III
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.