diff options
Diffstat (limited to 'api/nil.c')
-rw-r--r-- | api/nil.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,9 +8,9 @@ UwUVMValue uwunil_create() .value = { .nat_value = { .type = &uwunil_type, - .data = NULL, + .data = NULL, } - } + } }; } @@ -33,5 +33,5 @@ static char *uwunil_print(void *data) UwUVMNativeType uwunil_type = { .copy = &uwunil_copy, .delete = &uwunil_delete, - .print = &uwunil_print, + .print = &uwunil_print, }; |