summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Podlesny <user.email@poige.ru>2015-03-21 18:30:02 (GMT)
committerJason Evans <jasone@canonware.com>2015-03-22 07:09:04 (GMT)
commit8ad6bf360f9ca5c6c9a1d8e5825ee473bb4697da (patch)
tree7031cc147a1588af9c28e32ffdb5395fcfbf2501
parentfd5901ce3083cd3277b87aa414884d7628e2d509 (diff)
downloadjemalloc-8ad6bf360f9ca5c6c9a1d8e5825ee473bb4697da.zip
jemalloc-8ad6bf360f9ca5c6c9a1d8e5825ee473bb4697da.tar.gz
jemalloc-8ad6bf360f9ca5c6c9a1d8e5825ee473bb4697da.tar.bz2
Fix indentation inconsistencies.
-rw-r--r--include/jemalloc/internal/util.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/jemalloc/internal/util.h b/include/jemalloc/internal/util.h
index 5ad4933..001cd09 100644
--- a/include/jemalloc/internal/util.h
+++ b/include/jemalloc/internal/util.h
@@ -22,17 +22,17 @@
* uninitialized.
*/
#ifdef JEMALLOC_CC_SILENCE
-# define JEMALLOC_CC_SILENCE_INIT(v) = v
+# define JEMALLOC_CC_SILENCE_INIT(v) = v
#else
-# define JEMALLOC_CC_SILENCE_INIT(v)
+# define JEMALLOC_CC_SILENCE_INIT(v)
#endif
#ifdef __GNUC__
-#define likely(x) __builtin_expect(!!(x), 1)
-#define unlikely(x) __builtin_expect(!!(x), 0)
+# define likely(x) __builtin_expect(!!(x), 1)
+# define unlikely(x) __builtin_expect(!!(x), 0)
#else
-#define likely(x) !!(x)
-#define unlikely(x) !!(x)
+# define likely(x) !!(x)
+# define unlikely(x) !!(x)
#endif
/*