Whitespace fix for __glibc_likely/__glibc_unlikely defns.
authorRoland McGrath <roland@hack.frob.com>
Wed, 23 Jan 2013 23:00:39 +0000 (15:00 -0800)
committerRoland McGrath <roland@hack.frob.com>
Wed, 23 Jan 2013 23:00:55 +0000 (15:00 -0800)
ChangeLog
misc/sys/cdefs.h

index 00f7027..e6f9290 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-01-23  Roland McGrath  <roland@hack.frob.com>
+
+       * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
+
 2013-01-23  David S. Miller  <davem@davemloft.net>
 
        * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
index 717bb7b..81ab318 100644 (file)
 #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 <bits/wordsize.h>