mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2025-12-08 11:22:55 +00:00
avoid gcc gripes
SCCS-file: zic.c SCCS-SID: 7.35
This commit is contained in:
committed by
Paul Eggert
parent
f307bd8eb0
commit
645aaeeb59
3
zic.c
3
zic.c
@ -427,7 +427,8 @@ char * argv[];
|
||||
register int c;
|
||||
|
||||
#ifdef unix
|
||||
(void) umask(umask(S_IWGRP|S_IWOTH) | (S_IWGRP|S_IWOTH));
|
||||
(void) umask((mode_t) (umask((mode_t) (S_IWGRP | S_IWOTH)) |
|
||||
(S_IWGRP | S_IWOTH)));
|
||||
#endif /* defined unix */
|
||||
progname = argv[0];
|
||||
while ((c = getopt(argc, argv, "d:l:p:L:vsy:")) != EOF)
|
||||
|
||||
Reference in New Issue
Block a user