From b6fc52177ad69e2ee802fb34f4e84a0cad4e3bc1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christophe=20Thi=C3=A9ry?= Date: Wed, 2 Nov 2011 15:51:23 +0100 Subject: [PATCH] This constant may be too large for type long --- examples/msg/masterslave/masterslave_kill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.20.1