namespace CEC
{
class CLibCEC;
- class IAdapterCommunication;
+ struct IAdapterCommunication;
class CCECBusDevice;
class CCECProcessor : public PLATFORM::CThread, public IAdapterCommunicationCallback
else
{
PrintToStdOut("Found devices: %d\n", iDevicesFound);
- for (unsigned int iDevicePtr = 0; iDevicePtr < iDevicesFound; iDevicePtr++)
+ for (int8_t iDevicePtr = 0; iDevicePtr < iDevicesFound; iDevicePtr++)
PrintToStdOut("device: %d\npath: %s\ncom port: %s\n", iDevicePtr + 1, devices[iDevicePtr].path, devices[iDevicePtr].comm);
}
}