2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

sensord: Fix coding style

This patch fixes some coding style issues.

* Remove whitespaces between variable and increment operator.
* Break long lines.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@5789 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Andre Prendel
2009-11-04 19:02:58 +00:00
parent 9a83fe6c01
commit 13b3c7aa36

View File

@@ -99,7 +99,7 @@ static void rrdCheckLabel(const char *rawLabel, int index0)
} else {
buffer[i] = '_';
}
++ i;
++i;
}
buffer[i] = '\0';
@@ -108,7 +108,7 @@ static void rrdCheckLabel(const char *rawLabel, int index0)
/* locate duplicates */
while (okay && (j < index0))
okay = strcmp(rrdLabels[j ++], buffer);
okay = strcmp(rrdLabels[j++], buffer);
/* uniquify duplicate labels with _? or _?? */
while (!okay) {
@@ -449,13 +449,19 @@ int rrdCGI(void)
{
int ret = 0, i;
printf("#!" RRDCGI "\n\n<HTML>\n<HEAD>\n<TITLE>sensord</TITLE>\n</HEAD>\n<BODY>\n<H1>sensord</H1>\n");
printf("#!" RRDCGI "\n\n<HTML>\n"
"<HEAD>\n<TITLE>sensord</TITLE>\n</HEAD>\n"
"<BODY>\n<H1>sensord</H1>\n");
for (i = 0; i < ARRAY_SIZE(graphs); i++) {
struct gr *graph = &graphs[i];
printf("<H2>%s</H2>\n", graph->h2);
printf("<P>\n<RRD::GRAPH %s/%s.png\n\t--imginfo '<IMG SRC=" WWWDIR "/%%s WIDTH=%%lu HEIGHT=%%lu>'\n\t-a PNG\n\t-h 200 -w 800\n",
printf("<P>\n<RRD::GRAPH %s/%s.png\n\t--imginfo '"
"<IMG SRC=" WWWDIR "/%%s WIDTH=%%lu HEIGHT=%%lu>'"
"\n\t-a PNG\n\t-h 200 -w 800\n",
sensord_args.cgiDir, graph->image);
printf("\t--lazy\n\t-v '%s'\n\t-t '%s'\n\t-x '%s'\n\t%s",
graph->axisTitle, graph->title, graph->axisDefn,
graph->options);
@@ -469,7 +475,12 @@ int rrdCGI(void)
ret = rrdCGI_LINE(graph, LOADAVG, LOAD_AVERAGE, NULL);
printf (">\n</P>\n");
}
printf("<p>\n<small><b>sensord</b> by <a href=\"mailto:merlin@merlin.org\">Merlin Hughes</a>, all credit to the <a href=\"http://www.lm-sensors.org/\">lm_sensors</a> crew.</small>\n</p>\n");
printf("<p>\n<small><b>sensord</b> by "
"<a href=\"mailto:merlin@merlin.org\">Merlin Hughes</a>"
", all credit to the "
"<a href=\"http://www.lm-sensors.org/\">lm_sensors</a> "
"crew.</small>\n</p>\n");
printf("</BODY>\n</HTML>\n");
return ret;