X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45c3f1cfee86fb48c96d53f8267f99b6db6e3d7a..04e829f2dc9c85be2ea9b594437a988557c94c00:/examples/msg/bittorrent/bittorrent.c diff --git a/examples/msg/bittorrent/bittorrent.c b/examples/msg/bittorrent/bittorrent.c index 0ad478188e..4fc3fb19e1 100644 --- a/examples/msg/bittorrent/bittorrent.c +++ b/examples/msg/bittorrent/bittorrent.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2012-2014. The SimGrid Team. +/* Copyright (c) 2012-2016. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,12 +7,10 @@ #include "bittorrent.h" #include "peer.h" #include "tracker.h" -#include +#include #include -/** - * Bittorrent example launcher - */ +/** Bittorrent example launcher */ int main(int argc, char *argv[]) { xbt_dynar_t host_list; @@ -22,10 +20,7 @@ int main(int argc, char *argv[]) MSG_init(&argc, argv); /* Check the arguments */ - if (argc < 3) { - printf("Usage: %s platform_file deployment_file \n", argv[0]); - return -1; - } + xbt_assert (argc > 2, "Usage: %s platform_file deployment_file", argv[0]); const char *platform_file = argv[1]; const char *deployment_file = argv[2];