two-letter format specifiers seem to not come out nicely.
printf("Read failed 0x%lx (%lu)", address, size);
This should highlight lx and lu as part of the format specifier, but only the l is in both cases. The same happens for 3-letter specifiers too - only the first letter is highlighted.
two-letter format specifiers seem to not come out nicely.
This should highlight
lx
andlu
as part of the format specifier, but only thel
is in both cases. The same happens for 3-letter specifiers too - only the first letter is highlighted.