diff options
author | mharris <mharris> | 2002-05-08 12:15:39 +0000 |
---|---|---|
committer | mharris <mharris> | 2002-05-08 12:15:39 +0000 |
commit | 66a84e634bd761aca76f578af997938f396b87ed (patch) | |
tree | 3a8d507e377fb71d5caa17e38d6c1bb71e24612f /isomd5sum | |
parent | 9d50edff694fdb2973a6804145d4729e5c646521 (diff) | |
download | anaconda-66a84e634bd761aca76f578af997938f396b87ed.tar.gz anaconda-66a84e634bd761aca76f578af997938f396b87ed.tar.xz anaconda-66a84e634bd761aca76f578af997938f396b87ed.zip |
Fixed missing \n in result string, which causes the bash prompt to be displayed at the end of the line rather than on the next line.
Diffstat (limited to 'isomd5sum')
-rw-r--r-- | isomd5sum/checkisomd5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isomd5sum/checkisomd5.c b/isomd5sum/checkisomd5.c index aa52999dd..dfaba9d42 100644 --- a/isomd5sum/checkisomd5.c +++ b/isomd5sum/checkisomd5.c @@ -216,7 +216,7 @@ int mediaCheckFile(char *file) { result = "NA.\n\nNo checksum information available, unable to verify media."; fprintf(stderr, "The media check is complete, the " - "result is: %s", result); + "result is: %s\n", result); return rc; } |