about summary refs log tree commit diff
path: root/src/rt/rust_uv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_uv.cpp')
-rw-r--r--src/rt/rust_uv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_uv.cpp b/src/rt/rust_uv.cpp
index 95d503b7914..0ad59a73161 100644
--- a/src/rt/rust_uv.cpp
+++ b/src/rt/rust_uv.cpp
@@ -453,10 +453,10 @@ rust_uv_get_kernel_global_chan_ptr() {
 
 extern "C" void*
 rust_uv_current_kernel_malloc(size_t size) {
-	return current_kernel_malloc(size, "rust_uv_current_kernel_malloc");
+    return current_kernel_malloc(size, "rust_uv_current_kernel_malloc");
 }
 
 extern "C" void
 rust_uv_current_kernel_free(void* mem) {
-	current_kernel_free(mem);
+    current_kernel_free(mem);
 }