From: Roland McGrath Date: Wed, 23 Jan 2013 23:00:39 +0000 (-0800) Subject: Whitespace fix for __glibc_likely/__glibc_unlikely defns. X-Git-Tag: glibc-2.18~771 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4858fa2af6b597859ec418e7b37cc672d8d05707;p=thirdparty%2Fglibc.git Whitespace fix for __glibc_likely/__glibc_unlikely defns. --- diff --git a/ChangeLog b/ChangeLog index 00f702735e9..e6f929035a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-01-23 Roland McGrath + + * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace. + 2013-01-23 David S. Miller * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index 717bb7b6fbb..81ab3187bf1 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -376,11 +376,11 @@ #endif #if __GNUC__ >= 3 -# define __glibc_unlikely(cond) __builtin_expect((cond), 0) -# define __glibc_likely(cond) __builtin_expect((cond), 1) +# define __glibc_unlikely(cond) __builtin_expect ((cond), 0) +# define __glibc_likely(cond) __builtin_expect ((cond), 1) #else -# define __glibc_unlikely(cond) (cond) -# define __glibc_likely(cond) (cond) +# define __glibc_unlikely(cond) (cond) +# define __glibc_likely(cond) (cond) #endif #include