Closed sgomes closed 5 years ago
@aduth: FYI, looks like there's an additional bug in the handling of the arguments. Will try to fix here too.
False alarm. The bug only appeared due to my testing procedure; the bundled sources work correctly. This was an interesting one.
Falsy values (notably
0
) are all replaced with empty strings. This is incorrect, assprintf( '%d', 0 )
produces''
instead of'0'
.