aboutsummaryrefslogtreecommitdiff
path: root/src/server/check.odin
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2025-08-10 14:39:49 +0200
committerDanielGavin <danielgavin5@hotmail.com>2025-08-10 14:39:49 +0200
commit90a41ff247b050228e1a6e1a9fe0486948ca6b9e (patch)
tree0eaaebcb2dce6ef68590551c56ae4d4b1825018f /src/server/check.odin
parentc816acb6d6c683900b75910a5237c155533ba9fe (diff)
Fix compiler issues with contextless
Diffstat (limited to 'src/server/check.odin')
-rw-r--r--src/server/check.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/check.odin b/src/server/check.odin
index 4b7da85..ea68066 100644
--- a/src/server/check.odin
+++ b/src/server/check.odin
@@ -20,7 +20,7 @@ import "core:thread"
import "src:common"
//Store uris we have reported on since last save. We use this to clear them on next save.
-uris_reported := make([dynamic]string)
+uris_reported: [dynamic]string
Json_Error :: struct {
type: string,