summaryrefslogtreecommitdiffstats
path: root/library/cpp/malloc/api/malloc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/malloc/api/malloc.cpp')
-rw-r--r--library/cpp/malloc/api/malloc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/malloc/api/malloc.cpp b/library/cpp/malloc/api/malloc.cpp
index eed1c58a383..9bda35814fb 100644
--- a/library/cpp/malloc/api/malloc.cpp
+++ b/library/cpp/malloc/api/malloc.cpp
@@ -1,5 +1,5 @@
#include <stdlib.h>
-#include <stdio.h>
+#include <stdio.h>
#include "malloc.h"
@@ -28,9 +28,9 @@ namespace NMalloc {
{
}
- void AbortFromCorruptedAllocator(const char* errorMessage) {
- errorMessage = errorMessage ? errorMessage : "<unspecified>";
- fprintf(stderr, "Allocator error: %s\n", errorMessage);
+ void AbortFromCorruptedAllocator(const char* errorMessage) {
+ errorMessage = errorMessage ? errorMessage : "<unspecified>";
+ fprintf(stderr, "Allocator error: %s\n", errorMessage);
IsAllocatorCorrupted = true;
abort();
}