diff options
author | Erik Troan <ewt@redhat.com> | 1999-07-21 01:38:47 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-07-21 01:38:47 +0000 |
commit | 09b61fc5c8bde0358fb817a4489a988a9aca3590 (patch) | |
tree | 74dd1f4cff81e44a37ed295a38b4408cb83159c9 /utils | |
parent | 61a978bc16725876ef67d23ba4a022671e725df2 (diff) | |
download | anaconda-09b61fc5c8bde0358fb817a4489a988a9aca3590.tar.gz anaconda-09b61fc5c8bde0358fb817a4489a988a9aca3590.tar.xz anaconda-09b61fc5c8bde0358fb817a4489a988a9aca3590.zip |
don't print module name deps are against
Diffstat (limited to 'utils')
-rw-r--r-- | utils/moddeps.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/moddeps.c b/utils/moddeps.c index 9aff3807c..967b2f974 100644 --- a/utils/moddeps.c +++ b/utils/moddeps.c @@ -46,9 +46,8 @@ int main(int argc, char ** argv) { while ((mod = poptGetArg(optCon))) { list = mlGetDeps(ml, mod); if (list) { - printf("%s: ", mod); for (l = list; *l; l++) - printf("%s", *l); + printf("%s%s", l == list ? "" : " ", *l); printf("\n"); } } |