Use meaningful types for byte output functions

This commit is contained in:
ISSOtm
2020-02-09 16:06:30 +01:00
parent ffe9e92b48
commit 2f60e0a59e
3 changed files with 8 additions and 10 deletions

View File

@@ -1137,7 +1137,7 @@ constlist_8bit_entry : /* empty */
char *s = $1;
int32_t length = charmap_Convert(&s);
out_AbsByteGroup(s, length);
out_AbsByteGroup((uint8_t*)s, length);
free(s);
}
;