mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 23:31:39 +00:00
Handle the '"%c", 0' case correctly.
This commit is contained in:
parent
efd6281a35
commit
eb6b8e8d70
@ -228,7 +228,7 @@ size_t vcprintf ( struct printf_context *ctx, const char *fmt, va_list args ) {
|
||||
ptr = tmp_buf + sizeof ( tmp_buf ) - 1;
|
||||
*ptr = '\0';
|
||||
if ( *fmt == 'c' ) {
|
||||
*(--ptr) = va_arg ( args, unsigned int );
|
||||
ctx->handler ( ctx, va_arg ( args, unsigned int ) );
|
||||
} else if ( *fmt == 's' ) {
|
||||
ptr = va_arg ( args, char * );
|
||||
} else if ( *fmt == 'p' ) {
|
||||
|
Loading…
Reference in New Issue
Block a user