Changeset 1b42bdb6 in rtems
- Timestamp:
- 01/18/05 15:49:32 (18 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c3bb0619
- Parents:
- 52399be
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r52399be r1b42bdb6 1 2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * libcsupport/src/termios.c: Remove unnecessary type casts. 4 1 5 2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org> 2 6 -
cpukit/libcsupport/src/termios.c
r52399be r1b42bdb6 464 464 /* if chars available, call write function... */ 465 465 (*tty->device.write)(tty->minor, 466 (char *)&tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail],1);466 &tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail],1); 467 467 } 468 468 /* reenable interrupts */ … … 1192 1192 /* if chars available, call write function... */ 1193 1193 (*tty->device.write)(tty->minor, 1194 (char *)&tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail], 1);1194 &tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail], 1); 1195 1195 } 1196 1196 /* reenable interrupts */ … … 1368 1368 tty->rawOutBufState = rob_busy; /*apm*/ 1369 1369 (*tty->device.write)(tty->minor, 1370 (char *)&tty->rawOutBuf.theBuf[newTail],1370 &tty->rawOutBuf.theBuf[newTail], 1371 1371 nToSend); 1372 1372 }
Note: See TracChangeset
for help on using the changeset viewer.