diff --git a/src/ckh.c b/src/ckh.c index 6f16565f..6f0f1e4d 100644 --- a/src/ckh.c +++ b/src/ckh.c @@ -547,10 +547,10 @@ bool ckh_string_keycomp(const void *k1, const void *k2) { - assert(k1 != NULL); - assert(k2 != NULL); + assert(k1 != NULL); + assert(k2 != NULL); - return (strcmp((char *)k1, (char *)k2) ? false : true); + return (strcmp((char *)k1, (char *)k2) ? false : true); } void diff --git a/src/jemalloc_cpp.cpp b/src/jemalloc_cpp.cpp index 4c5756b3..4d88f993 100644 --- a/src/jemalloc_cpp.cpp +++ b/src/jemalloc_cpp.cpp @@ -92,7 +92,7 @@ void * operator new[](std::size_t size, const std::nothrow_t&) noexcept { - return (newImpl(size)); + return (newImpl(size)); } void