Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Extra header needed by FreeBSD to know SIGCHILD
[simgrid.git] / src / mc / mc_record.cpp
index bdd03aaa25f1798833b5221aed14bd2ae18239e1..78e34fee4a1f2c3084cbb737bc7c30faeae75954 100644 (file)
@@ -63,9 +63,9 @@ RecordTrace parseRecordTrace(const char* data)
 
   const char* current = data;
   while (*current) {
-
     simgrid::mc::Transition item;
     int count = sscanf(current, "%d/%d", &item.pid_, &item.argument_);
+
     if(count != 2 && count != 1)
       throw std::invalid_argument("Could not parse record path");
     res.push_back(item);