We've had a mix of min, max from libpspp/misc.h and MIN, MAX from
[pspp-builds.git] / src / output / table.c
index ca3e467cbe31579171ea077460cbf70e86423ae3..a8624488e7775cc4aac93025ae0d05ddf0ae2ec8 100644 (file)
@@ -142,8 +142,8 @@ tab_realloc (struct tab_table *t, int nc, int nr)
   
   if (nc > t->cf)
     {
-      int mr1 = min (nr, t->nr);
-      int mc1 = min (nc, t->nc);
+      int mr1 = MIN (nr, t->nr);
+      int mc1 = MIN (nc, t->nc);
       
       struct substring *new_cc;
       unsigned char *new_ct;