diff options
-rw-r--r-- | src/fe-common/core/fe-exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fe-common/core/fe-exec.c b/src/fe-common/core/fe-exec.c index 6524a6eb..b2512abe 100644 --- a/src/fe-common/core/fe-exec.c +++ b/src/fe-common/core/fe-exec.c @@ -48,9 +48,9 @@ typedef struct { char *target; /* send text with /msg <target> ... */ WINDOW_REC *target_win; /* print text to this window */ - int shell:1; /* start the program via /bin/sh */ - int notice:1; /* send text with /notice, not /msg if target is set */ - int silent:1; /* don't print "process exited with level xx" */ + unsigned int shell:1; /* start the program via /bin/sh */ + unsigned int notice:1; /* send text with /notice, not /msg if target is set */ + unsigned int silent:1; /* don't print "process exited with level xx" */ } PROCESS_REC; static GSList *processes; /* processes, sorted by */ |