diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-21 17:48:50 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-21 17:48:50 +0100 |
| commit | 6b65ef6d8847ea7dcb23a556e12daae69738c5c2 (patch) | |
| tree | 45500c041503cef095540c0a76c39415e20408b9 /src | |
| parent | 35c102137f9a097584bf1af39e9809064293a0a3 (diff) | |
Fix compilation bug on Linux
Diffstat (limited to 'src')
| -rw-r--r-- | src/build_settings.cpp | 2 |
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; |