X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Ftable.c;h=a8624488e7775cc4aac93025ae0d05ddf0ae2ec8;hb=b8b67a1e1f709640ccdb3422a591b938edb0ceea;hp=ca3e467cbe31579171ea077460cbf70e86423ae3;hpb=8acca2de53c1852f38726f70fc6516b34732a79f;p=pspp diff --git a/src/output/table.c b/src/output/table.c index ca3e467cbe..a8624488e7 100644 --- a/src/output/table.c +++ b/src/output/table.c @@ -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;