From 8b5475f78951e646d5101fb14f4db99ed84ed016 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 1 Jan 2001 18:13:54 +0000 Subject: [PATCH] int:1 -> unsigned int:1 git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1045 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/fe-exec.c | 6 +++--- 1 file 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 ... */ 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 */