fixed -m bug (thanks Rob)

This commit is contained in:
Connor Lane Smith
2011-05-11 12:25:50 +01:00
parent e0e6b071c6
commit 0291c722fb
2 changed files with 12 additions and 12 deletions

6
draw.c
View File

@ -7,9 +7,9 @@
#include <X11/Xlib.h>
#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);