aboutsummaryrefslogtreecommitdiff
path: root/api/nil.c
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-12-30 14:28:19 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-12-30 14:28:19 +0100
commit09d398c748c2707918c9f531b91d161b08cb1163 (patch)
tree7cdbf4b8d01c829b1cc7508b4f051b371cac20ec /api/nil.c
parent82bd4d7d640039f2e073f1de883d55131e1d5b38 (diff)
downloaduwu-lang-09d398c748c2707918c9f531b91d161b08cb1163.tar.xz
Code format
Diffstat (limited to 'api/nil.c')
-rw-r--r--api/nil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/api/nil.c b/api/nil.c
index a9c54cc..bbd1eb8 100644
--- a/api/nil.c
+++ b/api/nil.c
@@ -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,
};