about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2013-01-23 15:00:39 -0800
committerRoland McGrath <roland@hack.frob.com>2013-01-23 15:00:55 -0800
commit4858fa2af6b597859ec418e7b37cc672d8d05707 (patch)
treeb93ffcfb09f7f56db04f691f58b2e3a0ba0c85ce
parentbae8e7f5ed0cdc8a81ae9b32efc77285d2f5bc7a (diff)
downloadglibc-4858fa2af6b597859ec418e7b37cc672d8d05707.tar.gz
glibc-4858fa2af6b597859ec418e7b37cc672d8d05707.tar.xz
glibc-4858fa2af6b597859ec418e7b37cc672d8d05707.zip
Whitespace fix for __glibc_likely/__glibc_unlikely defns.
-rw-r--r--ChangeLog4
-rw-r--r--misc/sys/cdefs.h8
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 00f702735e..e6f929035a 100644
--- 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
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h
index 717bb7b6fb..81ab3187bf 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 <bits/wordsize.h>