From 8c8c6a9253ec2876f67217a8f10755b4ad7f3ec1 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 26 Apr 2020 19:21:19 -0700 Subject: fix: now properly sort arrays with inline functions --- sys/libbio/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/libbio/test.c') diff --git a/sys/libbio/test.c b/sys/libbio/test.c index fec0a0c..aa14382 100644 --- a/sys/libbio/test.c +++ b/sys/libbio/test.c @@ -241,7 +241,7 @@ main() for (i = 0; i < arrlen(SEQ); i++) { printf("["); for (l = 0; l < aln·L; l++) { - printf("%d,", loc[n][i][l]); + printf("%lu,", mem[n][i][l]); } printf("]"); if (i == 0) printf(" ~ "); -- cgit v1.2.1