long cast

This commit is contained in:
cgd 1994-04-01 03:29:58 +00:00
parent f74f70059d
commit 86be4d6208
2 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@
#ifndef lint #ifndef lint
/*static char sccsid[] = "from: @(#)rpc.rstatd.c 1.1 86/09/25 Copyr 1984 Sun Micro";*/ /*static char sccsid[] = "from: @(#)rpc.rstatd.c 1.1 86/09/25 Copyr 1984 Sun Micro";*/
/*static char sccsid[] = "from: @(#)rstat_proc.c 2.2 88/08/01 4.0 RPCSRC";*/ /*static char sccsid[] = "from: @(#)rstat_proc.c 2.2 88/08/01 4.0 RPCSRC";*/
static char rcsid[] = "$Id: rstat_proc.c,v 1.5 1993/12/07 09:09:12 mycroft Exp $"; static char rcsid[] = "$Id: rstat_proc.c,v 1.6 1994/04/01 03:29:58 cgd Exp $";
#endif #endif
/* /*
@ -113,7 +113,7 @@ kvm_read(off, addr, size)
char *addr; char *addr;
{ {
int len; int len;
if (lseek(kmem, (long)off, 0) == -1) if (lseek(kmem, off, 0) == -1)
return(-1); return(-1);
return(read(kmem, addr, size)); return(read(kmem, addr, size));
} }

View File

@ -42,7 +42,7 @@ char copyright[] =
#ifndef lint #ifndef lint
/*static char sccsid[] = "from: @(#)quota.c 5.12 (Berkeley) 9/27/90";*/ /*static char sccsid[] = "from: @(#)quota.c 5.12 (Berkeley) 9/27/90";*/
static char rcsid[] = "$Id: quota.c,v 1.3 1994/04/01 01:19:21 jtc Exp $"; static char rcsid[] = "$Id: quota.c,v 1.4 1994/04/01 03:31:37 cgd Exp $";
#endif /* not lint */ #endif /* not lint */
/* /*
@ -428,7 +428,7 @@ getprivs(id, quotatype)
free(qup); free(qup);
continue; continue;
} }
lseek(fd, (long)(id * sizeof(struct dqblk)), L_SET); lseek(fd, (id * sizeof(struct dqblk)), L_SET);
switch (read(fd, &qup->dqblk, sizeof(struct dqblk))) { switch (read(fd, &qup->dqblk, sizeof(struct dqblk))) {
case 0: /* EOF */ case 0: /* EOF */
/* /*