aboutsummaryrefslogtreecommitdiff
path: root/core/path/filepath/path_windows.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-11-17 16:36:33 +0000
committergingerBill <bill@gingerbill.org>2020-11-17 16:36:33 +0000
commit11577db6a84d17998478dc22b607a203cdf00a7e (patch)
treed802441753cf323dd1d272c29168d9f1dc7fc45a /core/path/filepath/path_windows.odin
parentede25a88f80e34fdf7eabfbca50878c69cec59d9 (diff)
Minor fixes
Diffstat (limited to 'core/path/filepath/path_windows.odin')
-rw-r--r--core/path/filepath/path_windows.odin3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/path/filepath/path_windows.odin b/core/path/filepath/path_windows.odin
index fc93bdfa2..b538e1640 100644
--- a/core/path/filepath/path_windows.odin
+++ b/core/path/filepath/path_windows.odin
@@ -8,7 +8,8 @@ SEPARATOR :: '\\';
SEPARATOR_STRING :: `\`;
LIST_SEPARATOR :: ';';
-reserved_names := []string{
+@(private)
+reserved_names := [?]string{
"CON", "PRN", "AUX", "NUL",
"COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9",
"LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9",