| .. | .. |
|---|
| 3 | 3 | * |
|---|
| 4 | 4 | * Module Name: utdebug - Debug print/trace routines |
|---|
| 5 | 5 | * |
|---|
| 6 | | - * Copyright (C) 2000 - 2018, Intel Corp. |
|---|
| 6 | + * Copyright (C) 2000 - 2020, Intel Corp. |
|---|
| 7 | 7 | * |
|---|
| 8 | 8 | *****************************************************************************/ |
|---|
| 9 | 9 | |
|---|
| .. | .. |
|---|
| 158 | 158 | * Display the module name, current line number, thread ID (if requested), |
|---|
| 159 | 159 | * current procedure nesting level, and the current procedure name |
|---|
| 160 | 160 | */ |
|---|
| 161 | | - acpi_os_printf("%9s-%04ld ", module_name, line_number); |
|---|
| 161 | + acpi_os_printf("%9s-%04d ", module_name, line_number); |
|---|
| 162 | 162 | |
|---|
| 163 | 163 | #ifdef ACPI_APPLICATION |
|---|
| 164 | 164 | /* |
|---|
| .. | .. |
|---|
| 177 | 177 | fill_count = 0; |
|---|
| 178 | 178 | } |
|---|
| 179 | 179 | |
|---|
| 180 | | - acpi_os_printf("[%02ld] %*s", |
|---|
| 180 | + acpi_os_printf("[%02d] %*s", |
|---|
| 181 | 181 | acpi_gbl_nesting_level, acpi_gbl_nesting_level + 1, " "); |
|---|
| 182 | 182 | acpi_os_printf("%s%*s: ", |
|---|
| 183 | 183 | acpi_ut_trim_function_name(function_name), fill_count, |
|---|