increasse portability (no // comment, no ... arguments for cpp)
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Fri, 2 Feb 2007 12:19:12 +0000 (12:19 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Fri, 2 Feb 2007 12:19:12 +0000 (12:19 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@989 a5681a0c-68f1-0310-ab6d-d61299d08faa

src/rrd_gfx.c
src/rrd_rpncalc.c

index 351f958..789ca95 100644 (file)
@@ -1,4 +1,4 @@
-/****************************************************************************
+****************************************************************************
  * RRDtool 1.2.19  Copyright by Tobi Oetiker, 1997-2007
  ****************************************************************************
  * rrd_gfx.c  graphics wrapper for rrdtool
@@ -13,7 +13,7 @@
 # ifdef DEBUG
 #  define DPRINTF(...)  fprintf(stderr, __VA_ARGS__);
 # else
-#  define DPRINTF(...)
+#  define DPRINTF()
 # endif /* DEBUG */
 #endif /* _MSC_VER */
 #include "rrd_tool.h"
index f8759f8..a5ab61f 100644 (file)
@@ -771,7 +771,7 @@ rpn_calc(rpnp_t *rpnp, rpnstack_t *rpnstack, long data_idx,
                      count++;
                      sum+=val;
                    }
-                   // now push the result bavk on stack
+                   /* now push the result back on stack */
                    if (count>0) {
                      rpnstack -> s[++stptr]=sum/count;
                    } else {