diff options
author | Christopher Faylor <me@cgf.cx> | 2000-02-21 05:20:38 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-02-21 05:20:38 +0000 |
commit | 9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9 (patch) | |
tree | c7033544db3e6e96f568e08cc0b283c58cb24e94 /winsup/cygwin/localtime.c | |
parent | 17869f8bf7adce5296d844c51c14e89f45fc4054 (diff) | |
download | cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.tar.gz cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.tar.bz2 cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.zip |
Respond to a multitude of g++ warnings.
Diffstat (limited to 'winsup/cygwin/localtime.c')
-rw-r--r-- | winsup/cygwin/localtime.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/winsup/cygwin/localtime.c b/winsup/cygwin/localtime.c index 5784f3cb0..a22d654e7 100644 --- a/winsup/cygwin/localtime.c +++ b/winsup/cygwin/localtime.c @@ -1560,10 +1560,8 @@ tzset P((void)) /*ARGSUSED*/ static void -localsub(timep, offset, tmp) -const time_t * const timep; -const long offset; -struct tm * const tmp; +localsub (const time_t * const timep, const long offset, + struct tm * const tmp) { register struct state * sp; register const struct ttinfo * ttisp; |