From: William Lee Irwin III <wli@holomorphy.com>
To: linux-kernel@vger.kernel.org
Cc: trivial@rustcorp.com.au
Subject: remove unnecessary parentheses from expand()
Date: Sat, 15 Jun 2002 11:20:20 -0700 [thread overview]
Message-ID: <20020615182020.GP25360@holomorphy.com> (raw)
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;
reply other threads:[~2002-06-15 18:20 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20020615182020.GP25360@holomorphy.com \
--to=wli@holomorphy.com \
--cc=linux-kernel@vger.kernel.org \
--cc=trivial@rustcorp.com.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.