Code

fix spaceing ... more space for the title and more space the the left of the yaxis...
[rrdtool-all.git] / program / src / rrd_first.c
index ab3bd497b9b4c0aaeab5b400be81cd8f48074045..eee8140887fc082c2710b72151eaf30fdad943c3 100644 (file)
@@ -14,6 +14,7 @@ rrd_first(int argc, char **argv)
 {
     int target_rraindex=0;
     char *endptr;
+    optind = 0; opterr = 0;  /* initialize getopt */
 
     while (1){
         static struct option long_options[] =
@@ -23,6 +24,7 @@ rrd_first(int argc, char **argv)
         };
         int option_index = 0;
         int opt;
+       optind = 0; opterr = 0;  /* initialize getopt */
         opt = getopt_long(argc, argv, "", long_options, &option_index);
 
         if(opt == EOF)