mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
strconv: fix strconv.v_printf() (#13716)
This commit is contained in:
@ -23,7 +23,7 @@ enum Char_parse_state {
|
||||
}
|
||||
|
||||
pub fn v_printf(str string, pt ...voidptr) {
|
||||
print(v_sprintf(str, pt))
|
||||
print(v_sprintf(str, ...pt))
|
||||
}
|
||||
|
||||
pub fn v_sprintf(str string, pt ...voidptr) string {
|
||||
|
Reference in New Issue
Block a user