X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a0c5b1ab11469128ad826610f54b1f0f332bd172..b8df87e176f27b25534f27d7e240defa32ca35bc:/examples/msg/mc/bugged2.c diff --git a/examples/msg/mc/bugged2.c b/examples/msg/mc/bugged2.c index 90dba114cb..c659568b79 100644 --- a/examples/msg/mc/bugged2.c +++ b/examples/msg/mc/bugged2.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2015. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2019. 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. */ @@ -23,25 +23,25 @@ static int server(int argc, char *argv[]) long val1 = xbt_str_parse_int(MSG_task_get_name(task1), "Task name is not a numerical ID: %s"); MSG_task_destroy(task1); task1 = NULL; - XBT_INFO("Received %lu", val1); + XBT_INFO("Received %ld", val1); MSG_task_receive(&task2, "mymailbox"); long val2 = xbt_str_parse_int(MSG_task_get_name(task2), "Task name is not a numerical ID: %s"); MSG_task_destroy(task2); task2 = NULL; - XBT_INFO("Received %lu", val2); + XBT_INFO("Received %ld", val2); MC_assert(MIN(val1, val2) == 1); MSG_task_receive(&task1, "mymailbox"); val1 = xbt_str_parse_int(MSG_task_get_name(task1), "Task name is not a numerical ID: %s"); MSG_task_destroy(task1); - XBT_INFO("Received %lu", val1); + XBT_INFO("Received %ld", val1); MSG_task_receive(&task2, "mymailbox"); val2 = xbt_str_parse_int(MSG_task_get_name(task2), "Task name is not a numerical ID: %s"); MSG_task_destroy(task2); - XBT_INFO("Received %lu", val2); + XBT_INFO("Received %ld", val2); XBT_INFO("OK"); return 0;