Files
poky/meta/recipes-kernel/libpfm/files/fix-misleading-indentation-error.patch
Kai Kang e8e8d412e7 libpfm4: fix compile error
It fails to compile libpfm4 with misleading-indentation error:

| syst_count.c:346:3: error: this 'for' clause does not guard...  [-Werror=misleading-indentation]
|   for(c=cmin ; c < cmax; c++)
|      ^~~

Add clauses to fix it.

(From OE-Core rev: 2857658ff5e477cb436cf2778a78fa9f192caab8)

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2016-07-08 09:57:25 +01:00

39 lines
890 B
Diff

Upstream-Status: Pending
Fix compile error:
| syst_count.c:346:3: error: this 'for' clause does not guard... [-Werror=misleading-indentation]
| for(c=cmin ; c < cmax; c++)
| ^~~
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
diff --git a/perf_examples/syst_count.c b/perf_examples/syst_count.c
index 0d53078..2dfb9b9 100644
--- a/perf_examples/syst_count.c
+++ b/perf_examples/syst_count.c
@@ -343,8 +343,9 @@ measure(void)
for (delay = 1 ; delay <= options.delay; delay++) {
- for(c=cmin ; c < cmax; c++)
- start_cpu(c);
+ for(c=cmin ; c < cmax; c++) {
+ start_cpu(c);
+ }
if (0) {
tv.tv_sec = 0;
@@ -353,8 +354,9 @@ measure(void)
} else
sleep(1);
- for(c=cmin ; c < cmax; c++)
- stop_cpu(c);
+ for(c=cmin ; c < cmax; c++) {
+ stop_cpu(c);
+ }
for(c = cmin; c < cmax; c++) {
printf("# %'ds -----\n", delay);