Skip to content

Commit

Permalink
fix clobber warning from linux64
Browse files Browse the repository at this point in the history
  • Loading branch information
mjfitzpatrick committed Jan 4, 2024
1 parent a55a788 commit 0e72cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unix/os/zfioks.c
Original file line number Diff line number Diff line change
Expand Up @@ -1285,7 +1285,7 @@ ks_puti (int fd, int ival)
static int
ks_geti (int fd)
{
register int value = 0;
int value = 0;
struct timeval timeout;
int stat, sig;
#if defined(POSIX) || defined(LINUX) || defined(MACOSX)
Expand Down Expand Up @@ -1453,8 +1453,8 @@ ks_getlogin (
struct ksparam *ks /* networking parameters */
)
{
register struct irafhosts *hp;
register int i;
struct irafhosts *hp;
char userfile[SZ_PATHNAME];
char sysfile[SZ_PATHNAME];
char fname[SZ_PATHNAME];
Expand Down

0 comments on commit 0e72cfc

Please sign in to comment.