From: Florian Forster Date: Tue, 15 Jun 2010 12:34:04 +0000 (+0200) Subject: action "list_graphs": Fix indentation. X-Git-Tag: v4.0.0~254 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;ds=inline;h=d16fd38d41ba3c36820ae105988f42c900fcb30f;p=collection4.git action "list_graphs": Fix indentation. --- diff --git a/action_list_graphs.c b/action_list_graphs.c index d7cea47..29e3d8b 100644 --- a/action_list_graphs.c +++ b/action_list_graphs.c @@ -75,7 +75,8 @@ static int print_graph_inst_html (graph_config_t *cfg, /* {{{ */ memset (desc, 0, sizeof (desc)); inst_describe (cfg, inst, desc, sizeof (desc)); - printf ("
  • %s
  • \n", params, desc); + printf ("
  • %s
  • \n", + params, desc); return (0); } /* }}} int print_graph_inst_html */ @@ -88,9 +89,9 @@ static int print_graph_html (graph_config_t *cfg, /* {{{ */ memset (buffer, 0, sizeof (buffer)); graph_get_title (cfg, buffer, sizeof (buffer)); - printf ("
  • %s\n
  • \n"); return (0); } /* }}} int print_graph_html */