diff options
Diffstat (limited to 'source/components/debugger/dbutils.c')
-rw-r--r-- | source/components/debugger/dbutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/components/debugger/dbutils.c b/source/components/debugger/dbutils.c index 947dd9d93a7b..7da73c1debd1 100644 --- a/source/components/debugger/dbutils.c +++ b/source/components/debugger/dbutils.c @@ -286,7 +286,7 @@ AcpiDbPrepNamestring ( /* Ignore a leading backslash, this is the root prefix */ - if (*Name == '\\') + if (ACPI_IS_ROOT_PREFIX (*Name)) { Name++; } |