aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/utbuffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/acpica/utbuffer.c')
-rw-r--r--drivers/acpi/acpica/utbuffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/utbuffer.c b/drivers/acpi/acpica/utbuffer.c
index a8c39643e618..01c8709ca586 100644
--- a/drivers/acpi/acpica/utbuffer.c
+++ b/drivers/acpi/acpica/utbuffer.c
@@ -159,7 +159,7 @@ void acpi_ut_dump_buffer(u8 *buffer, u32 count, u32 display, u32 base_offset)
159 } 159 }
160 160
161 buf_char = buffer[(acpi_size) i + j]; 161 buf_char = buffer[(acpi_size) i + j];
162 if (ACPI_IS_PRINT(buf_char)) { 162 if (isprint(buf_char)) {
163 acpi_os_printf("%c", buf_char); 163 acpi_os_printf("%c", buf_char);
164 } else { 164 } else {
165 acpi_os_printf("."); 165 acpi_os_printf(".");
@@ -319,7 +319,7 @@ acpi_ut_dump_buffer_to_file(ACPI_FILE file,
319 } 319 }
320 320
321 buf_char = buffer[(acpi_size) i + j]; 321 buf_char = buffer[(acpi_size) i + j];
322 if (ACPI_IS_PRINT(buf_char)) { 322 if (isprint(buf_char)) {
323 acpi_ut_file_printf(file, "%c", buf_char); 323 acpi_ut_file_printf(file, "%c", buf_char);
324 } else { 324 } else {
325 acpi_ut_file_printf(file, "."); 325 acpi_ut_file_printf(file, ".");