summaryrefslogtreecommitdiff
path: root/package.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-01-04 17:18:46 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-01-04 17:18:46 -0500
commit8741d955a1ebdbcb60cc5141c6e8eaa0f6415471 (patch)
tree450ef9c80b0bb06ca61597d955c08ca733805caa /package.c
parentcd9d0a7c5e4ec6cefdd2a67b263d04f2e24f7708 (diff)
formatting
Diffstat (limited to 'package.c')
-rw-r--r--package.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.c b/package.c
index 64adc2f..a425ecb 100644
--- a/package.c
+++ b/package.c
@@ -147,7 +147,7 @@ static bool export_fn_ptr(Exporter *ex, FnExpr *f, Location where) {
static bool export_val(Exporter *ex, Value val, Type *type, Location where);
static bool export_val_ptr(Exporter *ex, void *val, Type *type, Location where) {
switch (type->kind) {
- case TYPE_VOID: break;
+ case TYPE_VOID: break;
case TYPE_BUILTIN:
switch (type->builtin) {
case BUILTIN_I8: export_i8(ex, *(I8 *)val); break;