diff options
author | Chris Lumens <clumens@redhat.com> | 2006-11-06 14:50:45 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-11-06 14:50:45 +0000 |
commit | b620ce9092d905ef83973e687a82c0df883af51a (patch) | |
tree | b02f30503b78cba04653a5538432a06b0cb019db /isomd5sum | |
parent | 331c0c7388a87cb41705e891ad8de5d4ac6023f2 (diff) | |
download | anaconda-b620ce9092d905ef83973e687a82c0df883af51a.tar.gz anaconda-b620ce9092d905ef83973e687a82c0df883af51a.tar.xz anaconda-b620ce9092d905ef83973e687a82c0df883af51a.zip |
Fix output formatting (#214046).
Diffstat (limited to 'isomd5sum')
-rw-r--r-- | isomd5sum/implantisomd5.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/isomd5sum/implantisomd5.c b/isomd5sum/implantisomd5.c index d60cdc986..8b3f16c9a 100644 --- a/isomd5sum/implantisomd5.c +++ b/isomd5sum/implantisomd5.c @@ -53,7 +53,8 @@ int main(int argc, char **argv) { rc = implantISOFile((char *)args[0], supported, forceit, 0, &errstr); if (rc) { - fprintf(stderr, "ERROR: %s\n", errstr); + fprintf(stderr, "ERROR: "); + fprintf(stderr, errstr, (char *)args[0]); exit(1); } else { exit(0); |