aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2025-05-08 14:57:54 +0200
committerHimbeer <himbeer@disroot.org>2025-05-08 14:57:54 +0200
commit6d9785b3e7927079d2d40baba7e1779dca53577f (patch)
treea9e8df49d10dcc5284ac99f1b9833f9366e67fa1 /include
parenteb4df1d9f52eef9b7f3641f32b608c040ffd401b (diff)
Change character literal representation from int to uint32_t
Diffstat (limited to 'include')
-rw-r--r--include/literal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/literal.h b/include/literal.h
index 912dce0..32f069d 100644
--- a/include/literal.h
+++ b/include/literal.h
@@ -12,7 +12,7 @@ struct literal {
union {
int n;
double x;
- int c;
+ uint32_t c;
const char *s;
} v;
};