提交 e13da9a1 编写于 作者: C Colin Ian King 提交者: Len Brown

tools/power turbostat: replace strncmp with single character compare

Using strncmp for a single character comparison is overly complicated,
just use a simpler single character comparison instead. Also stops
static analyzers (such as cppcheck) from complaining about strncmp on
non-null terminated strings.
Signed-off-by: NColin Ian King <colin.i.king@gmail.com>
Signed-off-by: NLen Brown <len.brown@intel.com>
上级 03331233
......@@ -2976,7 +2976,7 @@ int get_thread_siblings(struct cpu_topology *thiscpu)
}
}
}
} while (!strncmp(&character, ",", 1));
} while (character == ',');
fclose(filep);
return CPU_COUNT_S(size, thiscpu->put_ids);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册