mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
strconv: fix strconv.v_printf() (#13716)
This commit is contained in:
parent
10ab758aa7
commit
795fe5844c
3 changed files with 51 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue