diff options
Diffstat (limited to 'source/tools/acpihelp/ahdecode.c')
-rw-r--r-- | source/tools/acpihelp/ahdecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tools/acpihelp/ahdecode.c b/source/tools/acpihelp/ahdecode.c index 7e6d7c8b7427..8684c6a1c042 100644 --- a/source/tools/acpihelp/ahdecode.c +++ b/source/tools/acpihelp/ahdecode.c @@ -170,7 +170,7 @@ AhFindPredefinedNames ( strncpy (&Name[1], NamePrefix, 7); Length = strlen (Name); - if (Length > 4) + if (Length > ACPI_NAME_SIZE) { printf ("%.8s: Predefined name must be 4 characters maximum\n", Name); return; |