aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 60567b2..3203014 100644
--- a/main.c
+++ b/main.c
@@ -42,7 +42,7 @@ static Window root;
42static Window win; 42static Window win;
43 43
44static void 44static void
45calcoffsets() { 45calcoffsets(void) {
46 unsigned int tw, w; 46 unsigned int tw, w;
47 47
48 if(!curr) 48 if(!curr)
@@ -70,7 +70,7 @@ calcoffsets() {
70} 70}
71 71
72static void 72static void
73drawmenu() { 73drawmenu(void) {
74 Item *i; 74 Item *i;
75 75
76 dc.x = 0; 76 dc.x = 0;
@@ -247,7 +247,7 @@ kpress(XKeyEvent * e) {
247} 247}
248 248
249static char * 249static char *
250readstdin() { 250readstdin(void) {
251 static char *maxname = NULL; 251 static char *maxname = NULL;
252 char *p, buf[1024]; 252 char *p, buf[1024];
253 unsigned int len = 0, max = 0; 253 unsigned int len = 0, max = 0;