diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-28 13:56:35 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-28 13:56:35 +0000 |
commit | 9190b7587421cb815d4b3835b0334bb30b27bc63 (patch) | |
tree | e5ade3378d571633a0fc80e547dd52feba8a88c5 | |
parent | d974adeed22c4fe031bb4e4b25218936f37cc8c1 (diff) | |
download | drakx-9190b7587421cb815d4b3835b0334bb30b27bc63.tar drakx-9190b7587421cb815d4b3835b0334bb30b27bc63.tar.gz drakx-9190b7587421cb815d4b3835b0334bb30b27bc63.tar.bz2 drakx-9190b7587421cb815d4b3835b0334bb30b27bc63.tar.xz drakx-9190b7587421cb815d4b3835b0334bb30b27bc63.zip |
remove message in case it fails miserably
-rw-r--r-- | mdk-stage1/init.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mdk-stage1/init.c b/mdk-stage1/init.c index b7b5f6e61..91fa65870 100644 --- a/mdk-stage1/init.c +++ b/mdk-stage1/init.c @@ -335,7 +335,6 @@ void unmount_filesystems(void) if (!disallow_eject) { fd = open("/dev/cdrom", O_RDONLY|O_NONBLOCK, 0); if (fd > 0) { - printf("ejecting cdrom...\n"); ioctl(fd, CDROMEJECT, 0); close(fd); } |