diff options
author | Timo Sirainen <cras@irssi.org> | 2001-01-01 18:13:54 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-01-01 18:13:54 +0000 |
commit | 8b5475f78951e646d5101fb14f4db99ed84ed016 (patch) | |
tree | c652fce3d837b0cef17c5343c36ecd912d516aaa /src/fe-common/core | |
parent | 08b869e8ee4f95385a643594cae0acfc38f743f9 (diff) | |
download | irssi-8b5475f78951e646d5101fb14f4db99ed84ed016.zip |
int:1 -> unsigned int:1
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1045 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core')
-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 */ |