aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2014-12-05 17:49:47 -0800
committerChristopher Ferris <cferris@google.com>2014-12-08 14:26:55 -0800
commit4e464914641cecfdac9c9db0903312f8e77f30c2 (patch)
tree71fd6cafb14162f839039925e6456f8626244fa7
parent9528f3c08a68a8e591f02fd8cac9e7245ed086d2 (diff)
downloadjemalloc-4e464914641cecfdac9c9db0903312f8e77f30c2.tar.gz
Style fixes.
-rw-r--r--include/jemalloc/internal/atomic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jemalloc/internal/atomic.h b/include/jemalloc/internal/atomic.h
index a048815..8b743b8 100644
--- a/include/jemalloc/internal/atomic.h
+++ b/include/jemalloc/internal/atomic.h
@@ -58,7 +58,7 @@ atomic_sub_uint64(uint64_t *p, uint64_t x)
return (__sync_sub_and_fetch(p, x));
}
-#elif (defined(_MSC_VER))
+# elif (defined(_MSC_VER))
JEMALLOC_INLINE uint64_t
atomic_add_uint64(uint64_t *p, uint64_t x)
{
@@ -72,7 +72,7 @@ atomic_sub_uint64(uint64_t *p, uint64_t x)
return (InterlockedExchangeAdd64(p, -((int64_t)x)) - x);
}
-#elif (defined(JEMALLOC_OSATOMIC))
+# elif (defined(JEMALLOC_OSATOMIC))
JEMALLOC_INLINE uint64_t
atomic_add_uint64(uint64_t *p, uint64_t x)
{