removed use of aitBool
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user