diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2013-12-19 10:51:50 -0800 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2013-12-19 10:51:50 -0800 |
commit | e81c64bba13d2d8b2a4e53254a82cc80f27c8497 (patch) | |
tree | 9156520f2834794db01a035b96f01885738c2ef6 /elf | |
parent | b627fdd58554bc36bd344dc40a8787c4b7a9cc46 (diff) | |
download | glibc-e81c64bba13d2d8b2a4e53254a82cc80f27c8497.tar.gz glibc-e81c64bba13d2d8b2a4e53254a82cc80f27c8497.tar.xz glibc-e81c64bba13d2d8b2a4e53254a82cc80f27c8497.zip |
Fix white space as well.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-misc.c b/elf/dl-misc.c index ad2d8ac964..b529af3f4b 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); |