Re: [PATCH] Support * as field width or precision in printf

2011-05-05 Thread Josh Triplett
Just following up on these patches. Any obstacles to merging them? Anything I need to fix in them? Thanks, Josh Triplett ___ Grub-devel mailing list Grub-devel@gnu.org https://lists.gnu.org/mailman/listinfo/grub-devel

[PATCH] Support * as field width or precision in printf

2011-04-22 Thread Josh Triplett
The attached patch implements support for * as the field width or precision in printf, which obtains that field width or precision from the next va_arg. This proves particularly useful as a modifier on %s: %.*s allows printing a non-NUL-terminated string with a known length. Tested with the follow