From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id 2DC733858C74; Tue, 1 Feb 2022 17:07:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2DC733858C74 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Carlos O'Donell To: glibc-cvs@sourceware.org Subject: [glibc] malloc: Fix tst-mallocalign1 macro spacing. X-Act-Checkin: glibc X-Git-Author: Carlos O'Donell X-Git-Refname: refs/heads/master X-Git-Oldrev: 3fb18fd80c5900cc82748f3320b30516c57d24da X-Git-Newrev: f77bcb70b8ba0046b66a7ff1ed1e7ef0d4eef963 Message-Id: <20220201170728.2DC733858C74@sourceware.org> Date: Tue, 1 Feb 2022 17:07:28 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Feb 2022 17:07:28 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f77bcb70b8ba0046b66a7ff1ed1e7ef0d4eef963 commit f77bcb70b8ba0046b66a7ff1ed1e7ef0d4eef963 Author: Carlos O'Donell Date: Tue Feb 1 11:03:32 2022 -0500 malloc: Fix tst-mallocalign1 macro spacing. Reported by Andreas Schwab Diff: --- malloc/tst-mallocalign1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc/tst-mallocalign1.c b/malloc/tst-mallocalign1.c index 3116748e7e..ed88c244e2 100644 --- a/malloc/tst-mallocalign1.c +++ b/malloc/tst-mallocalign1.c @@ -32,7 +32,7 @@ test (size_t s) return p; } -#define ALIGNED(p) (((uintptr_t )p & MALLOC_ALIGN_MASK) == 0) +#define ALIGNED(p) (((uintptr_t) p & MALLOC_ALIGN_MASK) == 0) static int do_test (void)