pow is alreay used as a function ... so lets call it power instead
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Mon, 2 May 2005 19:33:53 +0000 (19:33 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Mon, 2 May 2005 19:33:53 +0000 (19:33 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@476 a5681a0c-68f1-0310-ab6d-d61299d08faa

src/strftime.c

index f349bbf..3fb860f 100644 (file)
@@ -278,7 +278,7 @@ typedef void *va_list;
  *
  */
 
-static int pow[5] = { 1, 10, 100, 1000, 10000 };
+static int powers[5] = { 1, 10, 100, 1000, 10000 };
 
 /**
  * static void strfmt(char *str, char *fmt);
@@ -316,8 +316,8 @@ static void strfmt(char *str, const char *fmt, ...)
                         ival = va_arg(vp, int);
                         while (ilen)
                         {
-                              ival %= pow[ilen--];
-                              *str++ = (char)('0' + ival / pow[ilen]);
+                              ival %= powers[ilen--];
+                              *str++ = (char)('0' + ival / powers[ilen]);
                         }
                   }
             }