| # | Line 130 | Line 130 | void ZConsReader::readNextFrame(){ | |
|---|---|---|
| 130 | int sscanfCount; | |
| 131 | ||
| 132 | istream->getline(line, MAXBUFFERSIZE); | |
| 133 | < | sscanfCount = sscanf(line, "%f", curTime); |
| 133 | > | sscanfCount = sscanf(line, "%lf", &curTime); |
| 134 | if (sscanfCount != 1){ | |
| 135 | cerr << "ZConsReader Error : reading file error" << endl; | |
| 136 | exit(1); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |