mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
ACPICA: Fix a sscanf format string.
ACPICA commit 84f3569db7accc576ace2dae81d101467254fe9d Was using %d instead of properly using %u. This patch only affects acpidump tool. Link: https://github.com/acpica/acpica/commit/84f3569d Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
938ed1029a
commit
81ed793d30
@ -1156,7 +1156,7 @@ osl_table_name_from_file(char *filename, char *signature, u32 *instance)
|
||||
/* Extract instance number */
|
||||
|
||||
if (isdigit((int)filename[ACPI_NAME_SIZE])) {
|
||||
sscanf(&filename[ACPI_NAME_SIZE], "%d", instance);
|
||||
sscanf(&filename[ACPI_NAME_SIZE], "%u", instance);
|
||||
} else if (strlen(filename) != ACPI_NAME_SIZE) {
|
||||
return (AE_BAD_SIGNATURE);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user