From: Paul Pluzhnikov Date: Thu, 19 Dec 2013 18:51:50 +0000 (-0800) Subject: Fix white space as well. X-Git-Tag: glibc-2.19~231 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e81c64bba13d2d8b2a4e53254a82cc80f27c8497;p=thirdparty%2Fglibc.git Fix white space as well. --- diff --git a/elf/dl-misc.c b/elf/dl-misc.c index ad2d8ac9647..b529af3f4b5 100644 --- a/elf/dl-misc.c +++ b/elf/dl-misc.c @@ -396,7 +396,7 @@ __signal_safe_memalign (size_t boundary, size_t size) boundary = sizeof (*header); /* Boundary must be a power of two. */ - if (!powerof2(boundary)) + if (!powerof2 (boundary)) return NULL; size_t pg = GLRO (dl_pagesize);