summaryrefslogtreecommitdiffhomepage
path: root/dev/crt/src
diff options
context:
space:
mode:
Diffstat (limited to 'dev/crt/src')
-rw-r--r--dev/crt/src/hal/x86/base_alloc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/crt/src/hal/x86/base_alloc.cxx b/dev/crt/src/hal/x86/base_alloc.cxx
index c9634dbd..55a53c9d 100644
--- a/dev/crt/src/hal/x86/base_alloc.cxx
+++ b/dev/crt/src/hal/x86/base_alloc.cxx
@@ -20,7 +20,7 @@ void* operator new(size_t length)
: "=r"(ptr));
if (!ptr)
- std::__throw_bad_alloc();
+ std::__throw_bad_alloc();
return ptr;
}
@@ -35,7 +35,7 @@ void* operator new[](size_t length)
: "=r"(ptr));
if (!ptr)
- std::__throw_bad_alloc();
+ std::__throw_bad_alloc();
return ptr;
}