1
0
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:
Arthur David Olson
1995-01-02 12:44:47 -05:00
committed by Paul Eggert
parent f307bd8eb0
commit 645aaeeb59

3
zic.c
View File

@ -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)