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: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Colin Ian King 2022-04-26 14:10:24 +01:00 committed by Len Brown
parent 033312336d
commit e13da9a1db

View File

@ -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);