From: Florian Forster Date: Fri, 10 Sep 2010 12:45:22 +0000 (+0200) Subject: show_instance action: Fix the time arguments. X-Git-Tag: v4.0.0~11 X-Git-Url: https://git.octo.it/?p=collection4.git;a=commitdiff_plain;h=39d3a136ce18b3436df829c07571c7c19763975a show_instance action: Fix the time arguments. --- diff --git a/src/action_show_instance.c b/src/action_show_instance.c index 92bbf1c..0d5420a 100644 --- a/src/action_show_instance.c +++ b/src/action_show_instance.c @@ -186,7 +186,7 @@ static int left_menu (void *user_data) /* {{{ */ static int show_instance_json (graph_config_t *cfg, /* {{{ */ graph_instance_t *inst, - time_t begin, time_t end, int index) + long begin, long end, int index) { yajl_gen_config handler_config; yajl_gen handler; @@ -239,12 +239,12 @@ static int show_instance_json (graph_config_t *cfg, /* {{{ */ yajl_gen_string (handler, (unsigned char *) "begin", (unsigned int) strlen ("begin")); - yajl_gen_integer (handler, (long int) begin); + yajl_gen_integer (handler, begin); yajl_gen_string (handler, (unsigned char *) "end", (unsigned int) strlen ("end")); - yajl_gen_integer (handler, (long int) end); + yajl_gen_integer (handler, end); yajl_gen_map_close (handler);