remove unused variable

This commit is contained in:
Igor M 2024-03-18 14:57:45 +02:00
parent 1ded3630f4
commit f556bb56ac

View file

@ -33,7 +33,6 @@ AsmError push_string(char *buf, char *input, size_t len) {
}
char high = get_hex(input[pos + 1]);
char low = get_hex(input[pos + 2]);
offset = 2;
if (high > 15 || low > 15) {
return ErrStringBadHex;
}