MFp4: Loop forever getting characters... A kludge for now.

This commit is contained in:
Warner Losh 2006-04-21 13:56:26 +00:00
parent 750f97a294
commit 69f5220b21

View File

@ -420,7 +420,7 @@ Bootloader(int(*inputFunction)(int))
printf("\r\n>");
while (ch >= 0)
while (1)
if ((ch = ((*inputFunction)(0))) > 0)
ServicePrompt(ch);
}