aboutsummaryrefslogtreecommitdiff
path: root/core/_preload.odin
diff options
context:
space:
mode:
Diffstat (limited to 'core/_preload.odin')
-rw-r--r--core/_preload.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/_preload.odin b/core/_preload.odin
index d65f3d8e4..0d73e5462 100644
--- a/core/_preload.odin
+++ b/core/_preload.odin
@@ -308,7 +308,7 @@ __bounds_check_error :: proc(file: string, line, column: int, index, count: int)
if 0 <= index && index < count {
return;
}
- fmt.fprintf(os.stderr, "%(%:%) Index % is out of bounds range [0, %)\n",
+ fmt.fprintf(os.stderr, "%(%:%) Index % is out of bounds range 0..<%\n",
file, line, column, index, count);
__debug_trap();
}