X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc24be11966d17b35002353538b1eb5efda40f9f..ebec9c6104a6bbe60b7bf4586baeaf0b88f53505:/examples/c/actor-suspend/actor-suspend.c diff --git a/examples/c/actor-suspend/actor-suspend.c b/examples/c/actor-suspend/actor-suspend.c index e407187512..d38034d2a1 100644 --- a/examples/c/actor-suspend/actor-suspend.c +++ b/examples/c/actor-suspend/actor-suspend.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. +/* Copyright (c) 2007-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -73,7 +73,7 @@ static void dream_master(int argc, char* argv[]) int main(int argc, char* argv[]) { simgrid_init(&argc, argv); - xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]); + xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s platform.xml\n", argv[0], argv[0]); simgrid_load_platform(argv[1]); simgrid_register_function("dream_master", dream_master);