mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
int:1 -> unsigned int:1
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1045 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
08b869e8ee
commit
8b5475f789
1 changed files with 3 additions and 3 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue