Code

onewire plugin: fix one more compiler warning
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 13 Mar 2016 11:46:31 +0000 (12:46 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 13 Mar 2016 11:46:31 +0000 (12:46 +0100)
comparison of integers of different signs: 'int' and 'unsigned long'

src/onewire.c

index 3c3afdf69d80f9253ae738c33ccc8247a7538f3a..3c441ecb3493791d4d650b7667f3d355ccdf9109 100644 (file)
@@ -459,7 +459,7 @@ static int cow_read_bus (const char *path)
     else
       status = ssnprintf (subpath, sizeof (subpath), "%s/%s",
           path, buffer_ptr);
-    if ((status <= 0) || (status >= sizeof (subpath)))
+    if ((status <= 0) || (status >= (int) sizeof (subpath)))
       continue;
 
     for (i = 0; i < ow_family_features_num; i++)