Fixed a compile-breaking type in chipset/scat.c.

This commit is contained in:
Miran Grča
2024-04-16 21:49:24 +02:00
committed by GitHub
parent 8756a70e38
commit b200091322

View File

@@ -1235,7 +1235,7 @@ scat_in(uint16_t port, void *priv)
break;
default:
if (dev->index <= dev->max_reg)
if (dev->indx <= dev->max_reg)
ret = dev->regs[dev->indx];
break;
}