summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-05-14 20:38:36 +0000
committerJeremy Katz <katzj@redhat.com>2002-05-14 20:38:36 +0000
commitc4b4be15fd0717cd506493dbeacd966eaf884fdc (patch)
treea29bc4e5e17fee6387fbc37f5e26898e0826085d /utils
parentda73685bbbc21d668413fb5b437045d5afa745bc (diff)
downloadanaconda-c4b4be15fd0717cd506493dbeacd966eaf884fdc.tar.gz
anaconda-c4b4be15fd0717cd506493dbeacd966eaf884fdc.tar.xz
anaconda-c4b4be15fd0717cd506493dbeacd966eaf884fdc.zip
fix the build
Diffstat (limited to 'utils')
-rw-r--r--utils/implantisomd5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/implantisomd5.c b/utils/implantisomd5.c
index d81059535..173eddeae 100644
--- a/utils/implantisomd5.c
+++ b/utils/implantisomd5.c
@@ -169,7 +169,7 @@ int main(int argc, char **argv) {
i = lseek(isofd, pvd_offset + APPDATA_OFFSET, SEEK_SET);
if (i<0) {
printf("seek failed\n");
- perror();
+ perror("");
exit(1);
}
@@ -183,5 +183,5 @@ int main(int argc, char **argv) {
close(isofd);
printf("Done!\n");
- exit(0)
+ exit(0);
}