diff options
| -rw-r--r-- | lib/io/io.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/io/io.c b/lib/io/io.c index 43e05b4..e8384f3 100644 --- a/lib/io/io.c +++ b/lib/io/io.c @@ -43,12 +43,14 @@ void wstdf__(const char *buf, const void **args) stoi_buf[i] = 0; i64_to_cstr(((u64 *)args)[0], stoi_buf, 32); __wstdn(stoi_buf, cstr_length(stoi_buf)); + ++args; break; case 'u': for (i = 0; i < 32; ++i) stoi_buf[i] = 0; u64_to_cstr(((u64 *)args)[0], stoi_buf, 32); __wstdn(stoi_buf, cstr_length(stoi_buf)); + ++args; break; case 'S': sgr(((const char **)args)[0]); |