aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-06-02 15:50:40 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-06-02 15:50:40 -0700
commit87c93d0193a6d61efe436fa2d8ac1cbc8cd18002 (patch)
tree315a5f5c97dbc66da1a4bbc1f090077ec3005e03 /sys
parente8415cc286e76ed760eb1737e097532b6eb0cf54 (diff)
fix: fixed prototype used in test
Diffstat (limited to 'sys')
-rw-r--r--sys/libfont/test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/libfont/test.c b/sys/libfont/test.c
index 569d7ad..bd55f33 100644
--- a/sys/libfont/test.c
+++ b/sys/libfont/test.c
@@ -28,7 +28,8 @@ main()
err = 1;
goto end;
}
- info = font·make(fontfile.ubuf, 0);
+
+ info = font·make(fontfile.ubuf, 0, mem·sys, nil);
if (!info)
panicf("failed to load info");