minor typos

This commit is contained in:
kalsprite
2026-08-04 18:49:33 -07:00
parent dc28a91e88
commit 29c9c132b0
2 changed files with 2 additions and 2 deletions

View File

@@ -2739,7 +2739,7 @@ gb_internal void check_cast_error_suggestion(CheckerContext *c, Operand *o, Type
}
} else if (is_type_integer(o->type) && is_type_pointer(type)) {
if (is_type_uintptr(o->type)) {
error_line("\tSuggestion: %a may be directly casted to %s\n", a, b);
error_line("\tSuggestion: %s may be directly casted to %s\n", a, b);
} else {
error_line("\tSuggestion: for an integer to be casted to a pointer, it must be converted to 'uintptr' first\n");
}