diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-29 23:36:44 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-29 23:36:44 -0400 |
| commit | 429938fa67beef12eb348dec04d748ab58b00678 (patch) | |
| tree | df59be6a9084f5e58675ef0333bb7ad7c3bb946b /src/main.c | |
| parent | 4ab26eee1dd329152cd2424b0851f2ce950f96bc (diff) | |
| download | fujinet-chat-429938fa67beef12eb348dec04d748ab58b00678.tar.gz | |
Banish itoa(), save 170 bytes.
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -147,8 +147,7 @@ void reconnect(void) { if(reconnect_timeout) { OS.cdtmv3 = reconnect_timeout * hz; scr_print_current(" or wait "); - itoa(reconnect_timeout, numbuf, 10); - scr_print_current(numbuf); + scr_cur_printnum(reconnect_timeout); scr_print_current(" sec"); if(reconnect_timeout < 64) reconnect_timeout <<= 1; |
