diff options
author | Connor Lane Smith | 2011-05-11 12:25:50 +0100 |
---|---|---|
committer | Connor Lane Smith | 2011-05-11 12:25:50 +0100 |
commit | 0291c722fb298768d1942824ea2900399566e8a1 (patch) | |
tree | 77faef3f8778bf243316bd197b3062433cd3bd7d /draw.c | |
parent | e0e6b071c63f960c398b43b2fbf0dec66a9b3ab6 (diff) |
fixed -m bug (thanks Rob)
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |