Re: [PATCH next] ACPICA: AML Parser: Remove spurious precision from format used to dump parse trees
Andy Shevchenko <[email protected]>
| Newsgroups | dev.linux.lists.acpica-devel,org.kernel.vger.linux-acpi,org.kernel.vger.linux-kernel |
|---|---|
| Organization | Intel Finland Oy - BIC 0357606-4 - c/o Alberga Business Park, 6 krs, Bertel Jungin Aukio 5, 02600 Espoo |
| Message-ID | <[email protected]> |
On Thu, Mar 26, 2026 at 08:18:30PM +0000, [email protected] wrote: > The debug code in acpi_ps_delete_parse_tree() uses ("%*.s", level * 4, " ") > to indent traces. > POSIX requires the empty precision be treated as zero, but the kernel treats > is as 'no precision specified'. > Change to ("%*s", level * 4, "") since there is additional whitespace and no > reason to indent by one space when level is zero. This is cross-platform code. Does the same applies to MS VC compiler, for example? -- With Best Regards, Andy Shevchenko