]> git.ipfire.org Git - thirdparty/rrdtool-1.x.git/commitdiff
src/rrd_graph.c: fix icc warning "external declaration in primary source file"
authorMarek Schimara <Marek.Schimara@bull.net>
Thu, 1 Sep 2016 14:48:16 +0000 (16:48 +0200)
committerMarek Schimara <Marek.Schimara@bull.net>
Fri, 2 Sep 2016 13:31:38 +0000 (15:31 +0200)
src/rrd_graph.c

index a912b03de6c36761bf4b651778874bb7883b0aa1..2ec9462f68587fa6b8082fbd30146d6dd686bc9e 100644 (file)
@@ -2587,10 +2587,7 @@ int draw_horizontal_grid(
 }
 
 /* this is frexp for base 10 */
-double    frexp10(
-    double,
-    double *);
-double frexp10(
+static double frexp10(
     double x,
     double *e)
 {
@@ -4914,7 +4911,7 @@ void rrd_graph_options(
 
     rrd_parsetime("end-24h", &start_tv);
     rrd_parsetime("now", &end_tv);
-    
+
     optparse_init(poptions, argc, argv);
     while ((opt = optparse_long(poptions, longopts, NULL)) != -1) {
         int       col_start, col_end;