aboutsummaryrefslogtreecommitdiff
path: root/draw.c
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-05-11 12:25:50 +0100
committerConnor Lane Smith <cls@lubutu.com>2011-05-11 12:25:50 +0100
commit0291c722fb298768d1942824ea2900399566e8a1 (patch)
tree77faef3f8778bf243316bd197b3062433cd3bd7d /draw.c
parente0e6b071c63f960c398b43b2fbf0dec66a9b3ab6 (diff)
downloaddmenu-0291c722fb298768d1942824ea2900399566e8a1.tar.gz
dmenu-0291c722fb298768d1942824ea2900399566e8a1.tar.bz2
dmenu-0291c722fb298768d1942824ea2900399566e8a1.zip
fixed -m bug (thanks Rob)
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/draw.c b/draw.c
index 83ced4b..d35d4c2 100644
--- a/draw.c
+++ b/draw.c
@@ -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);