summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/os_common/os_alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/os_common/os_alloc.c')
-rw-r--r--src/third_party/wiredtiger/src/os_common/os_alloc.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/src/os_common/os_alloc.c b/src/third_party/wiredtiger/src/os_common/os_alloc.c
index 7933e01dedb..7ad9cf4ddc8 100644
--- a/src/third_party/wiredtiger/src/os_common/os_alloc.c
+++ b/src/third_party/wiredtiger/src/os_common/os_alloc.c
@@ -217,11 +217,10 @@ __wt_realloc_aligned(
}
#endif
/*
- * If there is no posix_memalign function, or no alignment configured,
- * fall back to realloc.
+ * If there is no posix_memalign function, or no alignment configured, fall back to realloc.
*
- * Windows note: Visual C CRT memalign does not match POSIX behavior
- * and would also double each allocation so it is bad for memory use.
+ * Windows note: Visual C CRT memalign does not match POSIX behavior and would also double each
+ * allocation so it is bad for memory use.
*/
return (__realloc_func(session, bytes_allocated_ret, bytes_to_allocate, false, retp));
}