diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-12-30 14:28:19 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-12-30 14:28:19 +0100 |
commit | 09d398c748c2707918c9f531b91d161b08cb1163 (patch) | |
tree | 7cdbf4b8d01c829b1cc7508b4f051b371cac20ec /api/int.c | |
parent | 82bd4d7d640039f2e073f1de883d55131e1d5b38 (diff) | |
download | uwu-lang-09d398c748c2707918c9f531b91d161b08cb1163.tar.xz |
Code format
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, }, }; } |