removed use of aitBool

This commit is contained in:
Jeff Hill
1999-09-14 23:56:43 +00:00
parent 214ce75781
commit c1c8cd70f6
4 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ extern int main (int argc, const char **argv)
continue;
}
if (sscanf(argv[i],"-t %lf", &executionTime)==1) {
forever = aitFalse;
forever = false;
continue;
}
if (sscanf(argv[i],"-p %127s", pvPrefix)==1) {
@@ -78,7 +78,7 @@ extern int main (int argc, const char **argv)
//
// loop here forever
//
while (aitTrue) {
while (true) {
fileDescriptorManager.process (1000.0);
}
}