aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-06-21 17:48:50 +0100
committerGinger Bill <bill@gingerbill.org>2017-06-21 17:48:50 +0100
commit6b65ef6d8847ea7dcb23a556e12daae69738c5c2 (patch)
tree45500c041503cef095540c0a76c39415e20408b9 /src
parent35c102137f9a097584bf1af39e9809064293a0a3 (diff)
Fix compilation bug on Linux
Diffstat (limited to 'src')
-rw-r--r--src/build_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp
index 0c0c0a91c..99ab55d1c 100644
--- a/src/build_settings.cpp
+++ b/src/build_settings.cpp
@@ -142,7 +142,7 @@ String odin_root_dir(void) {
String odin_root_dir(void) {
String path = global_module_path;
- Array(char) path_buf;
+ Array<char> path_buf;
isize len, i;
gbTempArenaMemory tmp;
u8 *text;