X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e9994d33a883aa73468e38d54cf377f52b3fd950..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/src/instr/jedule/jedule_sd_binding.cpp diff --git a/src/instr/jedule/jedule_sd_binding.cpp b/src/instr/jedule/jedule_sd_binding.cpp index 4ca1e45820..ea2b2237f9 100644 --- a/src/instr/jedule/jedule_sd_binding.cpp +++ b/src/instr/jedule/jedule_sd_binding.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -22,7 +22,7 @@ void jedule_log_sd_event(const_SD_task_t task) simgrid::jedule::Event event(std::string(SD_task_get_name(task)), SD_task_get_start_time(task), SD_task_get_finish_time(task), "SD"); event.add_resources(*task->allocation); - my_jedule->add_event(std::move(event)); + my_jedule->add_event(event); } void jedule_sd_init() @@ -49,6 +49,7 @@ void jedule_sd_dump(const char * filename) } FILE* fh = fopen(fname.c_str(), "w"); + xbt_assert(fh != nullptr, "Failed to open file: %s", fname.c_str()); my_jedule->write_output(fh);