aboutsummaryrefslogtreecommitdiff
path: root/src/bundle_command.cpp
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-09-10 18:20:20 +0100
committergingerBill <gingerBill@users.noreply.github.com>2025-09-10 18:20:20 +0100
commit21b1173076cec12f97c5779556509ef1b908c644 (patch)
tree6404b2245872d44841893decb9656290a5e06529 /src/bundle_command.cpp
parentaf37ba76c1b50c6f4fbe7045446ca645ed604d3e (diff)
Minor clean up of permanent/temporary arena usage
Diffstat (limited to 'src/bundle_command.cpp')
-rw-r--r--src/bundle_command.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bundle_command.cpp b/src/bundle_command.cpp
index cd0cd589f..7abd48104 100644
--- a/src/bundle_command.cpp
+++ b/src/bundle_command.cpp
@@ -83,7 +83,7 @@ i32 bundle_android(String original_init_directory) {
return 1;
}
- int *dir_numbers = gb_alloc_array(temporary_allocator(), int, possible_valid_dirs.count);
+ int *dir_numbers = temporary_alloc_array<int>(possible_valid_dirs.count);
char buf[1024] = {};
for_array(i, possible_valid_dirs) {