1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-20 18:07:22 +00:00

AltairZ80: Fixed integer type issue in mfdc.c

This commit is contained in:
Peter Schorn 2018-06-01 07:10:57 +02:00
parent b40e586ef3
commit 221d72f057

View File

@ -241,7 +241,7 @@ static t_stat mfdc_reset(DEVICE *dptr)
static t_stat mfdc_attach(UNIT *uptr, CONST char *cptr)
{
t_stat r;
unsigned int i = 0;
int32 i = 0;
r = attach_unit(uptr, cptr); /* attach unit */
if ( r != SCPE_OK) /* error? */