diff options
author | arg@mmvi <unknown> | 2006-09-25 08:29:20 +0200 |
---|---|---|
committer | arg@mmvi <unknown> | 2006-09-25 08:29:20 +0200 |
commit | 1716159e05e712962c3a4c60091f6cd6b573461f (patch) | |
tree | bd11f54ccf6b0dd5615fe96a8bc5bbc8cab99311 | |
parent | 11b64016687f01e6498b7d1433ae334adf473804 (diff) |
applied something similiar to Jukkas patch
-rw-r--r-- | main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -42,7 +42,7 @@ static Window root; | |||
42 | static Window win; | 42 | static Window win; |
43 | 43 | ||
44 | static void | 44 | static void |
45 | calcoffsets() { | 45 | calcoffsets(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 | ||
72 | static void | 72 | static void |
73 | drawmenu() { | 73 | drawmenu(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 | ||
249 | static char * | 249 | static char * |
250 | readstdin() { | 250 | readstdin(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; |