cosmetic replace tab by space
authorFneufneu <fneufneu@xbmc.org>
Tue, 28 Feb 2012 07:22:25 +0000 (08:22 +0100)
committerFneufneu <fneufneu@xbmc.org>
Tue, 28 Feb 2012 07:22:25 +0000 (08:22 +0100)
src/lib/adapter/USBCECAdapterDetection.cpp

index c2a0b5cfb47b77ff48ae942a3df55eca6aad2d60..8775b4e55bbb2444c8b9a841e3e57f0e3748773f 100644 (file)
@@ -333,12 +333,11 @@ uint8_t CUSBCECAdapterDetection::FindAdapters(cec_adapter *deviceList, uint8_t i
   for (i = 0; i < 8; ++i)
   {
     (void)snprintf(devicePath, sizeof(devicePath), "/dev/ttyU%d", i);
-       if (!access(devicePath, 0))
-       {
-      snprintf(deviceList[iFound].path, sizeof(deviceList[iFound].path), "%s", devicePath);
-         snprintf(deviceList[iFound].comm, sizeof(deviceList[iFound].path), "%s", devicePath);
-         ++iFound;
-       }
+    if (!access(devicePath, 0))
+    {
+      snprintf(deviceList[iFound  ].path, sizeof(deviceList[iFound].path), "%s", devicePath);
+      snprintf(deviceList[iFound++].comm, sizeof(deviceList[iFound].path), "%s", devicePath);
+    }
   }
 #endif