aboutsummaryrefslogtreecommitdiff
path: root/src/memory_allocator.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-09-15 18:11:51 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-09-15 18:11:51 -0700
commit62d9a18ec628c1ba61dbd84056664cbc53e293fb (patch)
treec771599a58bf48d4eeef05950e492581e9b43d0a /src/memory_allocator.zig
parentb0bb65f4942ee7bd10eb784a2c5ed982f1185e70 (diff)
downloadbun-62d9a18ec628c1ba61dbd84056664cbc53e293fb.tar.gz
bun-62d9a18ec628c1ba61dbd84056664cbc53e293fb.tar.zst
bun-62d9a18ec628c1ba61dbd84056664cbc53e293fb.zip
zig fmt
Diffstat (limited to 'src/memory_allocator.zig')
-rw-r--r--src/memory_allocator.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memory_allocator.zig b/src/memory_allocator.zig
index d8476d0f8..bc15c55bf 100644
--- a/src/memory_allocator.zig
+++ b/src/memory_allocator.zig
@@ -115,7 +115,7 @@ const CAllocator = struct {
return mem.alignAllocLen(full_len, new_len, len_align);
}
}
-
+
return error.OutOfMemory;
}
};