X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..5edbea104d3c5d61dc5a6dce20706a6fe5c89b2a:/contrib/benchmarking_code_block/inject.h?ds=sidebyside diff --git a/contrib/benchmarking_code_block/inject.h b/contrib/benchmarking_code_block/inject.h index 4828114e48..50bab56c41 100644 --- a/contrib/benchmarking_code_block/inject.h +++ b/contrib/benchmarking_code_block/inject.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. +/* Copyright (c) 2013-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -56,8 +56,7 @@ static inline void xbt_inject_init(char *inputfile) { xbt_dict_t mydict = get_dict(); FILE* fpInput = fopen(inputfile, "r"); - if (fpInput == NULL) - printf("Error while opening the inputfile"); + xbt_assert(fpInput != NULL, "Error while opening the inputfile"); fseek(fpInput, 0, 0); char line[200]; @@ -87,7 +86,7 @@ static inline void xbt_inject_init(char *inputfile) for (int i = 0; i < (data->n - 1); i++) data->percentage[i] = atof(strtok_r(NULL, "\t", &saveptr)); - xbt_dict_set(mydict, key, data, NULL); + xbt_dict_set(mydict, key, data); } fclose(fpInput); } @@ -140,7 +139,7 @@ static inline void inject_init_starpu(char *inputfile, xbt_dict_t *dict, RngStre data->percentage[i] = atof(strtok_r(NULL, "\t", &saveptr)); } - xbt_dict_set(mydict, key, data, NULL); + xbt_dict_set(mydict, key, data); } fclose(fpInput); }