1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-22 00:23:28 -05:00

Fixed an obscure bug due to hardware.

This commit is contained in:
freesource 2001-07-24 06:13:02 +00:00
parent 00a3bee0c0
commit 1a60c9d999

View File

@ -1,4 +1,4 @@
#############################################################################
############################################################################
##
## Error.pm
## Copyright (C) 2000 Modifications by the gBootRoot Project
@ -137,7 +137,9 @@ sub err_custom {
system("$_[0] > /dev/null 2>&1");
}
else {
sys("$_[0]");
# Yard::sys .. this seems to be necessary for my flakey floppy drive
# which doesn't even support 1722.
Yard::sys("$_[0]");
}
error_window($_[1]) if ($? != 0);
if (defined $error_window) {