It's only beta1, but it breaks compilation for rawhide due to -Werror=misleading-indentation.
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From e119ce167d8c220eb743f2c26e6dbaafdac5c16a Mon Sep 17 00:00:00 2001
|
|
From: Lubomir Rintel <lkundrak@v3.sk>
|
|
Date: Thu, 21 Jan 2016 16:53:56 +0100
|
|
Subject: [PATCH 1/1] linux-platform: fix accidental Python
|
|
|
|
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.
|
|
|
|
(cherry picked from commit 88da21caa156b30cb1cf62a930770e60c89b86a8)
|
|
---
|
|
src/platform/nm-linux-platform.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/platform/nm-linux-platform.c b/src/platform/nm-linux-platform.c
|
|
index f73c228..ea2d5d3 100644
|
|
--- a/src/platform/nm-linux-platform.c
|
|
+++ b/src/platform/nm-linux-platform.c
|
|
@@ -5728,9 +5728,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;
|
|
+ }
|
|
}
|
|
}
|
|
|
|
--
|
|
2.5.0
|
|
|