Browse Source

applied something similiar to Jukkas patch

master
arg@mmvi 18 years ago
parent
commit
1716159e05
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      main.c

+ 3
- 3
main.c View File

@@ -42,7 +42,7 @@ static Window root;
static Window win; static Window win;


static void static void
calcoffsets() {
calcoffsets(void) {
unsigned int tw, w; unsigned int tw, w;


if(!curr) if(!curr)
@@ -70,7 +70,7 @@ calcoffsets() {
} }


static void static void
drawmenu() {
drawmenu(void) {
Item *i; Item *i;


dc.x = 0; dc.x = 0;
@@ -247,7 +247,7 @@ kpress(XKeyEvent * e) {
} }


static char * static char *
readstdin() {
readstdin(void) {
static char *maxname = NULL; static char *maxname = NULL;
char *p, buf[1024]; char *p, buf[1024];
unsigned int len = 0, max = 0; unsigned int len = 0, max = 0;


Loading…
Cancel
Save