blob: 6a8b25fb21eac04cf298e2110713532b4c48b575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
diff --git a/wmmaiload/dockapp.c b/wmmaiload/dockapp.c
index f29ec9c..ee659a4 100644
--- a/wmmaiload/dockapp.c
+++ b/wmmaiload/dockapp.c
@@ -27,6 +27,7 @@
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
+#include <stdlib.h>
#define WINDOWED_SIZE_W 64
#define WINDOWED_SIZE_H 64
diff --git a/wmmaiload/main.c b/wmmaiload/main.c
index a3d0b52..78ed1bb 100644
--- a/wmmaiload/main.c
+++ b/wmmaiload/main.c
@@ -138,7 +138,7 @@ static void mbox_add(MailBox **list, const char *value);
static BoxType getboxtype(const char *t);
static void free_mbox(MailBox **list);
static int nb_mbox(MailBox *list);
-static void check_cfg_values();
+static void check_cfg_values(Bool wait);
static void replace_box_list(MailBox *replace);
@@ -167,7 +167,7 @@ int main(int argc, char **argv)
#if DEBUG_LEVEL>0
printf("arguments parsed.\n");
#endif
- check_cfg_values();
+ check_cfg_values(False);
/* Load default configuration */
if (! config_file)
{
|