diff options
| author | 2011-05-11 12:25:50 +0100 | |
|---|---|---|
| committer | 2011-05-11 12:25:50 +0100 | |
| commit | 0291c722fb298768d1942824ea2900399566e8a1 (patch) | |
| tree | 77faef3f8778bf243316bd197b3062433cd3bd7d /draw.c | |
| parent | fast grab patch (thanks Rob) (diff) | |
fixed -m bug (thanks Rob)
Diffstat (limited to '')
| -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); |
