From 0291c722fb298768d1942824ea2900399566e8a1 Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Wed, 11 May 2011 12:25:50 +0100 Subject: fixed -m bug (thanks Rob) --- draw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'draw.c') diff --git a/draw.c b/draw.c index 83ced4b..d35d4c2 100644 --- a/draw.c +++ b/draw.c @@ -7,9 +7,9 @@ #include #include "draw.h" -#define MAX(a, b) ((a) > (b) ? (a) : (b)) -#define MIN(a, b) ((a) < (b) ? (a) : (b)) -#define DEFFONT "fixed" +#define MAX(a, b) ((a) > (b) ? (a) : (b)) +#define MIN(a, b) ((a) < (b) ? (a) : (b)) +#define DEFFONT "fixed" static Bool loadfont(DC *dc, const char *fontstr); -- cgit v1.2.3