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) static t_stat mfdc_attach(UNIT *uptr, CONST char *cptr)
{ {
t_stat r; t_stat r;
unsigned int i = 0; int32 i = 0;
r = attach_unit(uptr, cptr); /* attach unit */ r = attach_unit(uptr, cptr); /* attach unit */
if ( r != SCPE_OK) /* error? */ if ( r != SCPE_OK) /* error? */