diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-12-19 00:41:43 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-12-19 00:41:43 -0500 |
commit | b3fcaefd320b0b4999d2d380139ab8610c6a0233 (patch) | |
tree | 1cc11b783eb9e8dc1e4b63c3ea27b91798d47b3c /src/deps.c | |
parent | 534657dd6fc2ee98159e41d2700554fed0da2c4e (diff) | |
download | spmc-b3fcaefd320b0b4999d2d380139ab8610c6a0233.tar.gz |
Make command line argument a thing
Diffstat (limited to 'src/deps.c')
-rw-r--r-- | src/deps.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]); } } |