History log of /external/toybox/toys/posix/printf.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
204bd961aec4a5787db109cd3ad9447841cb6922 02-Jun-2015 Rob Landley <rob@landley.net> Make "printf --" and "printf ---" work.
/external/toybox/toys/posix/printf.c
5d431d1e1f9172587775c00a07b767f9b544cb91 28-Mar-2015 Rob Landley <rob@landley.net> Fix printf bug (%.s should be %.0s not %s) reported by Isabella Parakiss.
/external/toybox/toys/posix/printf.c
38e5485c6a8ece99aa8aac2f318f14764857ee24 03-Mar-2015 Rob Landley <rob@landley.net> On 64 bit, subtracting two pointers produces a long result. On 32 bit, it's an int. Even though long _is_ 32 bits on a 32 bit systems, gcc warns about it because reasons.

Also, the warning being that "expects int, but type is wchar_t"... no, type
is not wchar_t. Type is probably long. Specify the ACTUAL TYPE, not the random
typedef alias for it. If the translated type _did_ match, there wouldn't
be a warning! (This is why c89 promoted all arguments to int, precisely
so this wasn't a problem.)
/external/toybox/toys/posix/printf.c
9d1d0ad1236d3c2d85e6c244d148f5ae8f589631 20-Jan-2015 Elliott Hughes <enh@google.com> fix typo in printf
/external/toybox/toys/posix/printf.c
d3d633ff13187c34c3a04ce20b9ffcfb85c2c383 11-Jan-2015 Rob Landley <rob@landley.net> Promote printf.
/external/toybox/toys/posix/printf.c