From 87c93d0193a6d61efe436fa2d8ac1cbc8cd18002 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Tue, 2 Jun 2020 15:50:40 -0700 Subject: fix: fixed prototype used in test --- sys/libfont/test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys') 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"); -- cgit v1.2.1