Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
em1lyy committed Aug 28, 2020
1 parent 1132d69 commit d75824f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 1.1
VERSION = 1.2

PREFIX =
MANPREFIX = $(PREFIX)/share/man
Expand Down
5 changes: 3 additions & 2 deletions ichirou.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#include <stdlib.h>
#include <unistd.h>

#define LEN(x) (sizeof (x) / sizeof *(x))
#define TIMEO 30
#define LEN(x) (sizeof (x) / sizeof *(x))
#define TIMEO 30

static void sigpoweroff(void);
static void sigreap(void);
Expand Down Expand Up @@ -159,6 +159,7 @@ static void spawnwait(char *const argv[]) {
_exit(1);
case -1:
perror("fork");
break;
default:
waitpid(chpid, NULL, WUNTRACED);
}
Expand Down

0 comments on commit d75824f

Please sign in to comment.