lx_kit: handle %hu specifier in console

Prevent '<warning unsupported format specifier>' when encountering
'%hu'.

Issue #4455.
This commit is contained in:
Josef Söntgen 2022-03-15 18:16:16 +01:00 committed by Christian Helmuth
parent ffea0bf857
commit 4b43b5c1c1

View File

@ -105,6 +105,12 @@ class Lx_kit::Format_command
break;
}
case 'h':
length = DEFAULT;
consumed++;
break;
case 'z':
case 'Z':