Avoid casts as lvalues.
This commit is contained in:
parent
eec256de79
commit
1f74490224
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132772
@ -872,7 +872,7 @@ scioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
|
||||
frbp = scp->vtb.vtb_buffer + scp->ysize * lsize + ptr->x *
|
||||
sizeof(u_int16_t);
|
||||
/* Pointer to the last line of target buffer */
|
||||
(vm_offset_t)outp += ptr->ysize * csize;
|
||||
outp = (char *)outp + ptr->ysize * csize;
|
||||
/* Pointer to the last line of history buffer */
|
||||
if (scp->history != NULL)
|
||||
hstp = scp->history->vtb_buffer + sc_vtb_tail(scp->history) *
|
||||
@ -892,7 +892,7 @@ scioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
|
||||
}
|
||||
if (lnum < ptr->y)
|
||||
continue;
|
||||
(vm_offset_t)outp -= csize;
|
||||
outp = (char *)outp - csize;
|
||||
retval = copyout((void *)frbp, outp, csize);
|
||||
if (retval != 0)
|
||||
break;
|
||||
|
@ -92,7 +92,7 @@
|
||||
#define SC_DRIVER_NAME "sc"
|
||||
#define SC_VTY(dev) minor(dev)
|
||||
#define SC_DEV(sc, vty) ((sc)->dev[(vty) - (sc)->first_vty])
|
||||
#define SC_STAT(dev) ((scr_stat *)(dev)->si_drv1)
|
||||
#define SC_STAT(dev) (*((scr_stat **)&(dev)->si_drv1))
|
||||
|
||||
/* printable chars */
|
||||
#ifndef PRINTABLE
|
||||
|
@ -1899,7 +1899,7 @@ ntfs_procfixups(
|
||||
return (EINVAL);
|
||||
}
|
||||
*cfxp = *fxp;
|
||||
((caddr_t) cfxp) += ntmp->ntm_bps;
|
||||
cfxp = (u_int16_t *) ((caddr_t) cfxp + ntmp->ntm_bps);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user