Re: [PATCH v2 1/3] xen/cmdline: fix printf format specifier in no_config_param()

2024-02-26 Thread Jan Beulich
On 23.02.2024 13:06, Roger Pau Monne wrote: > '*' sets the width field, which is the minimum number of characters to output, > but what we want in no_config_param() is the precision instead, which is '.*' > as it imposes a maximum limit on the output. > > Fixes: 68d757df8dd2 ('x86/pv: Options to

[PATCH v2 1/3] xen/cmdline: fix printf format specifier in no_config_param()

2024-02-23 Thread Roger Pau Monne
'*' sets the width field, which is the minimum number of characters to output, but what we want in no_config_param() is the precision instead, which is '.*' as it imposes a maximum limit on the output. Fixes: 68d757df8dd2 ('x86/pv: Options to disable and/or compile out 32bit PV support')