diff options
Diffstat (limited to 'meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch')
-rw-r--r-- | meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch b/meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch deleted file mode 100644 index 0b34b8491f..0000000000 --- a/meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From 1b0aa1debf6fbe9923c9aac671d2894f76c32f9d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 20 Apr 2016 16:38:13 +0000 | ||
4 | Subject: [PATCH] raid6check: Fix if-else indentation | ||
5 | |||
6 | gcc 6 warns about ambiguity due to this indentation | ||
7 | | raid6check.c: In function 'manual_repair': | ||
8 | | raid6check.c:267:4: error: this 'else' clause does not guard... [-Werror=misleading-indentation] | ||
9 | | else | ||
10 | | ^~~~ | ||
11 | | raid6check.c:269:5: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'else' | ||
12 | | printf("Repairing D(%d) and P\n", failed_data); | ||
13 | | ^~~~~~ | ||
14 | |||
15 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
16 | --- | ||
17 | Upstream-Status: Submitted | ||
18 | |||
19 | raid6check.c | 2 +- | ||
20 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
21 | |||
22 | diff --git a/raid6check.c b/raid6check.c | ||
23 | index ad7ffe7..409b1b6 100644 | ||
24 | --- a/raid6check.c | ||
25 | +++ b/raid6check.c | ||
26 | @@ -266,7 +266,7 @@ int manual_repair(int chunk_size, int syndrome_disks, | ||
27 | failed_data = failed_slot2; | ||
28 | else | ||
29 | failed_data = failed_slot1; | ||
30 | - printf("Repairing D(%d) and P\n", failed_data); | ||
31 | + printf("Repairing D(%d) and P\n", failed_data); | ||
32 | raid6_datap_recov(syndrome_disks+2, chunk_size, | ||
33 | failed_data, (uint8_t**)blocks, 1); | ||
34 | } else { | ||
35 | -- | ||
36 | 1.9.1 | ||
37 | |||