use proper format for double precision variable in scanf
This commit is contained in:
@@ -22,7 +22,7 @@ extern int main (int argc, const char **argv)
|
||||
if (sscanf(argv[i], "-d\t%u", &debugLevel)==1) {
|
||||
continue;
|
||||
}
|
||||
if (sscanf(argv[i],"-t %f", &executionTime)==1) {
|
||||
if (sscanf(argv[i],"-t %lf", &executionTime)==1) {
|
||||
forever = aitFalse;
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user