From ab1da1e98e25fc74d2710fbc5a438b4afe32c313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Bouchaud=20=28yoz=29?= Date: Fri, 7 Feb 2014 16:57:10 +0100 Subject: [PATCH] entrance: and really fix this warnings --- src/daemon/entrance_action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/entrance_action.c b/src/daemon/entrance_action.c index 06296a1..a6a558c 100644 --- a/src/daemon/entrance_action.c +++ b/src/daemon/entrance_action.c @@ -166,7 +166,7 @@ _entrance_action_grub2(void *data) i = (size_t)data; snprintf(buf, sizeof(buf), - "grub-reboot %lu && %s", i, entrance_config->command.reboot); + "grub-reboot %lu && %s", (unsigned long int) i, entrance_config->command.reboot); _action_exe = ecore_exe_run(buf, NULL); }