aboutsummaryrefslogtreecommitdiff
path: root/src/deps.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-12-19 00:41:43 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-12-19 00:41:43 -0500
commitb3fcaefd320b0b4999d2d380139ab8610c6a0233 (patch)
tree1cc11b783eb9e8dc1e4b63c3ea27b91798d47b3c /src/deps.c
parent534657dd6fc2ee98159e41d2700554fed0da2c4e (diff)
downloadspmc-b3fcaefd320b0b4999d2d380139ab8610c6a0233.tar.gz
Make command line argument a thing
Diffstat (limited to 'src/deps.c')
-rw-r--r--src/deps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deps.c b/src/deps.c
index 99f6148..ded7fab 100644
--- a/src/deps.c
+++ b/src/deps.c
@@ -183,6 +183,6 @@ void dep_show(Dependencies **deps) {
return;
}
for (int i = 0; i < (*deps)->records; i++) {
- printf("%d: %s\n", i, (*deps)->list[i]);
+ printf(" -> %s\n", (*deps)->list[i]);
}
}