Reinstate an apparently mis-deleted ';' from a for loop with no body.

Fixes an error returning "No core keyboard" with multiple keyboards.
This commit is contained in:
Luo Jie 2007-05-24 11:13:03 -07:00 committed by Eric Anholt
parent 4d7469f75f
commit 3c982bc1a4

View File

@ -425,6 +425,7 @@ InitAndStartDevices(void)
for (dev = inputInfo.devices;
dev && (dev != inputInfo.keyboard);
dev = dev->next)
;
if (!dev || (dev != inputInfo.keyboard)) {
ErrorF("No core keyboard\n");
return BadImplementation;