linux-platform: fix accidental Python
authorLubomir Rintel <lkundrak@v3.sk>
Thu, 21 Jan 2016 15:53:56 +0000 (16:53 +0100)
committerLubomir Rintel <lkundrak@v3.sk>
Thu, 21 Jan 2016 15:53:56 +0000 (16:53 +0100)
Coverity: CID 59378 (#1 of 1): Nesting level does not match indentation
(NESTING_INDENT_MISMATCH) This statement is indented to column 41, as if
it were nested within the preceding parent statement, but it is not.

src/platform/nm-linux-platform.c

index 2ea9360..85b6422 100644 (file)
@@ -5735,9 +5735,10 @@ after_read:
                                i++;
 
                                if (   data_next.seq_number == 0
-                                   || data_next.timeout_abs_ns > data->timeout_abs_ns)
+                                   || data_next.timeout_abs_ns > data->timeout_abs_ns) {
                                        data_next.seq_number = data->seq_number;
                                        data_next.timeout_abs_ns = data->timeout_abs_ns;
+                               }
                        }
                }