X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f1e469ce075c0a1ad21a7fd0fdb587f9a3cb5289..29d98d1ceb682fbc4c734a92353be4b0bcd5d17b:/src/s4u/s4u_engine.cpp diff --git a/src/s4u/s4u_engine.cpp b/src/s4u/s4u_engine.cpp index 7c1d47df17..d895beb099 100644 --- a/src/s4u/s4u_engine.cpp +++ b/src/s4u/s4u_engine.cpp @@ -107,7 +107,7 @@ s4u::NetZone* Engine::netRoot() static s4u::NetZone* netzoneByNameRecursive(s4u::NetZone* current, const char* name) { - if(!strcmp(current->name(), name)) + if (not strcmp(current->name(), name)) return current; for (auto elem : *(current->children())) {