aboutsummaryrefslogtreecommitdiff
path: root/nodelink.c
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-06-14 12:30:18 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-06-14 12:30:18 -0400
commit6efdaa8ac39129bfd31ec14cae1075075688ab95 (patch)
tree356cff025f60e4710e05cc6bb6997c46a52fa7f2 /nodelink.c
parent3e1cec290e04799d1596e79d4ca467e15a5d065a (diff)
switched nl handling to optional (=1 or 0)
Diffstat (limited to 'nodelink.c')
-rw-r--r--nodelink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nodelink.c b/nodelink.c
index 8c98690..b8dbb91 100644
--- a/nodelink.c
+++ b/nodelink.c
@@ -20,7 +20,7 @@ link* newlink(node* to) {
static void printlink(char* name, link* conn) {
if (conn->desc[0])
- printf("%s: %s\n", name, conn->desc);
+ printf("%s: %s", name, conn->desc);
else
printf("%s\n", name);
}