From 4b0ef5bf1644520bcec05a7b2f59d6787eb616f8 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Thu, 22 Apr 2021 10:29:35 -0700 Subject: chore(refactor): explicit definition of useful interfaces --- sys/libbio/newick.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/libbio/newick.c') diff --git a/sys/libbio/newick.c b/sys/libbio/newick.c index 164516f..a838278 100644 --- a/sys/libbio/newick.c +++ b/sys/libbio/newick.c @@ -395,13 +395,13 @@ dump(bio·Node *node, void *impl, io·Putter out) out.put(impl, ')'); } if (node->name) { - out.putstr(impl, node->name); + out.puts(impl, node->name); } if (node->parent) { out.put(impl, ':'); snprintf(b, arrlen(b), "%f", node->dist); - out.putstr(impl, b); + out.puts(impl, b); } return 0; -- cgit v1.2.1