From: Christophe ThiƩry Date: Wed, 2 Nov 2011 14:51:23 +0000 (+0100) Subject: This constant may be too large for type long X-Git-Tag: exp_20120216~528^2~1 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b6fc52177ad69e2ee802fb34f4e84a0cad4e3bc1 This constant may be too large for type long --- diff --git a/examples/msg/masterslave/masterslave_kill.c b/examples/msg/masterslave/masterslave_kill.c index b6248aeb6d..c65c06b1b4 100644 --- a/examples/msg/masterslave/masterslave_kill.c +++ b/examples/msg/masterslave/masterslave_kill.c @@ -18,7 +18,7 @@ static int slave(int argc, char *argv[]) XBT_INFO("Hello!"); XBT_INFO("Suspend process"); MSG_process_suspend(MSG_process_self()); - MSG_task_execute(MSG_task_create("toto",10000000000000000,0,NULL)); + MSG_task_execute(MSG_task_create("toto", 1e9, 0, NULL)); XBT_INFO("Bye!"); return 0; } /* end_of_lazy_guy */