diff options
Diffstat (limited to 'api/int.c')
-rw-r--r-- | api/int.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ UwUVMValue uwuint_create(int value) return (UwUVMValue) { .type = VT_INT, .value = { - .int_value = value, + .int_value = value, }, }; } |