Skip to content
Snippets Groups Projects
Commit 66e202b5 authored by Robert Ricci's avatar Robert Ricci
Browse files

Fixed an Eric Nit

parent e04ad729
No related branches found
No related tags found
No related merge requests found
......@@ -598,12 +598,12 @@ sub WaitTillAlive ($) {
$waittime = time - $waitstart{$pc};
if ($waittime > $maxwait) {
$minutes = int($waittime / 60);
print "*** $pc appears dead - its been $minutes minute(s).\n";
print "*** $pc appears dead - it's been $minutes minute(s).\n";
return 1;
}
if (int($waittime / 60) > $minutes) {
$minutes = int($waittime / 60);
print "Still waiting for $pc - its been $minutes minute(s).\n";
print "Still waiting for $pc - it's been $minutes minute(s).\n";
}
sleep(1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment