0
0
mirror of https://github.com/irssi/irssi.git synced 2025-06-30 22:18:06 -04: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:
Timo Sirainen 2001-01-01 18:13:54 +00:00 committed by cras
parent 08b869e8ee
commit 8b5475f789

View File

@ -48,9 +48,9 @@ typedef struct {
char *target; /* send text with /msg <target> ... */ char *target; /* send text with /msg <target> ... */
WINDOW_REC *target_win; /* print text to this window */ WINDOW_REC *target_win; /* print text to this window */
int shell:1; /* start the program via /bin/sh */ unsigned int shell:1; /* start the program via /bin/sh */
int notice:1; /* send text with /notice, not /msg if target is set */ unsigned 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 silent:1; /* don't print "process exited with level xx" */
} PROCESS_REC; } PROCESS_REC;
static GSList *processes; /* processes, sorted by */ static GSList *processes; /* processes, sorted by */