diff options
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/boot/acpigen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/boot/acpigen.c b/src/arch/x86/boot/acpigen.c index 58e783ed41..121cb22f05 100644 --- a/src/arch/x86/boot/acpigen.c +++ b/src/arch/x86/boot/acpigen.c @@ -211,13 +211,13 @@ int acpigen_emit_namestring(const char *namepath) { int dotpos = 0; int len = 0; - /* We can start with a »\«. */ + /* We can start with a '\'. */ if (namepath[0] == '\\') { len += acpigen_emit_byte('\\'); namepath++; } - /* And there can be any number of »^«. */ + /* And there can be any number of '^' */ while (namepath[0] == '^') { len += acpigen_emit_byte('^'); namepath++; |