diff options
author | 2021-09-15 18:11:51 -0700 | |
---|---|---|
committer | 2021-09-15 18:11:51 -0700 | |
commit | 62d9a18ec628c1ba61dbd84056664cbc53e293fb (patch) | |
tree | c771599a58bf48d4eeef05950e492581e9b43d0a /src/memory_allocator.zig | |
parent | b0bb65f4942ee7bd10eb784a2c5ed982f1185e70 (diff) | |
download | bun-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.zig | 2 |
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; } }; |