From 16f3b35c0f237ecc60b3e037d3cf8e1836487c8f Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Sun, 31 Mar 2019 22:16:09 -0400 Subject: [PATCH] I7000: Fixed coverity error. --- I7000/i7000_mt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/I7000/i7000_mt.c b/I7000/i7000_mt.c index d35ca97..a775547 100644 --- a/I7000/i7000_mt.c +++ b/I7000/i7000_mt.c @@ -1361,8 +1361,7 @@ mt_attach(UNIT * uptr, CONST char *file) uptr->u3 = 0; uptr->u5 |= MT_RDY; uptr->flags |= MTUF_ONLINE; - uptr->dynflags = MT_200_VALID | MT_556_VALID | - (((uptr->flags & MTUF_LDN) ? MT_556_VALID : MT_200_VALID) < UNIT_V_DF_TAPE); +/* uptr->dynflags = (((uptr->flags & MTUF_LDN) ? MT_556_VALID : MT_200_VALID) < UNIT_V_DF_TAPE); */ return SCPE_OK; }