fix syntax for non-C99 mode
This commit is contained in:
@@ -126,7 +126,8 @@
|
||||
|
||||
// read found device information
|
||||
NSArray* devices = [inquiry foundDevices];
|
||||
for(NSUInteger i = 0; i < [devices count]; i++) {
|
||||
NSUInteger i;
|
||||
for(i = 0; i < [devices count]; i++) {
|
||||
IOBluetoothDevice* device = [devices objectAtIndex:i];
|
||||
|
||||
// save the device in the wiimote structure
|
||||
|
||||
Reference in New Issue
Block a user