Fix typos

This commit is contained in:
gingerBill
2018-07-28 19:44:00 +01:00
parent 8d2c4a78a1
commit 1705ba8069
4 changed files with 17 additions and 8 deletions
+1 -1
View File
@@ -402,7 +402,7 @@ ExactValue exact_unary_operator_value(TokenKind op, ExactValue v, i32 precision,
case ExactValue_Integer: {
GB_ASSERT(precision != 0);
ExactValue i = {ExactValue_Integer};
bit_int_not(&i.value_integer, &v.value_integer, precision, !is_unsigned);
big_int_not(&i.value_integer, &v.value_integer, precision, !is_unsigned);
return i;
}
default: