aboutsummaryrefslogtreecommitdiff
path: root/sys/libbio/test.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-04-26 19:21:19 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-04-26 19:21:19 -0700
commit8c8c6a9253ec2876f67217a8f10755b4ad7f3ec1 (patch)
tree9f225c0f0157c15fd09954394948b1a9a8b11161 /sys/libbio/test.c
parentea845a58272658b7716345855b05631bcb296605 (diff)
fix: now properly sort arrays with inline functions
Diffstat (limited to 'sys/libbio/test.c')
-rw-r--r--sys/libbio/test.c2
1 files changed, 1 insertions, 1 deletions
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(" ~ ");