diff options
author | Michael Forney <mforney@mforney.org> | 2021-09-13 14:02:59 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-09-13 16:17:04 -0700 |
commit | 4e9690b6cb07de9f5a1927ec0b1a8d0c99ddbbe8 (patch) | |
tree | 5c1abf5742e83612f04e997bc146dd9312d364ca /cc.h | |
parent | 32df8722283c6d2f5385870d36db75d514b33a5b (diff) |
Make string literal data unsigned char
Diffstat (limited to 'cc.h')
-rw-r--r-- | cc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -331,7 +331,7 @@ struct expr { double f; } constant; struct { - char *data; + unsigned char *data; size_t size; } string; struct { |