Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "stringify, snake_case and cleanups in k::ExecImpl"
[simgrid.git] / src / plugins / vm / s4u_VirtualMachine.cpp
index 9a26e93..bb23fed 100644 (file)
@@ -32,7 +32,7 @@ VirtualMachine::VirtualMachine(std::string name, s4u::Host* physical_host, int c
 VirtualMachine::VirtualMachine(std::string name, s4u::Host* physical_host, int core_amount, size_t ramsize)
     : Host(name), pimpl_vm_(new vm::VirtualMachineImpl(this, physical_host, core_amount, ramsize))
 {
-  XBT_DEBUG("Create VM %s", name);
+  XBT_DEBUG("Create VM %s", name.c_str());
 
   /* Currently, a VM uses the network resource of its physical host */
   pimpl_netpoint = physical_host->pimpl_netpoint;