1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-01-13 07:19:26 +00:00

I7000: Clean up compiler warning.

This commit is contained in:
Richard Cornwell 2018-07-31 14:00:19 -04:00
parent 1c805af365
commit 0b72b8d3ec

View File

@ -760,7 +760,7 @@ t_stat mt_srv(UNIT * uptr)
"Read flush unit=%d %s at %d Block %d chars\n",
unit, (cmd == MT_RDS) ? "BCD" : "Binary", uptr->u6, reclen);
/* Keep moving until end of block */
if (uptr->u6 < reclen ) {
if (uptr->u6 < (int32)reclen ) {
reclen -= uptr->u6;
uptr->u3 += reclen;
uptr->u5 |= MT_SKIP|MT_IDLE;