ircsprintf -> rb_sprintf

This commit is contained in:
William Pitcock 2008-04-01 15:21:53 -05:00
parent 5b96d9a6b9
commit 7cdb0a09b9
26 changed files with 61 additions and 61 deletions

View file

@ -110,7 +110,7 @@ dump_map(struct Client *client_p, struct Client *root_p, char *pbuf)
}
}
ircsnprintf(buf + USER_COL, BUFSIZE - USER_COL,
rb_snprintf(buf + USER_COL, BUFSIZE - USER_COL,
" | Users: %5lu (%4.1f%%)", rb_dlink_list_length(&root_p->serv->users),
100 * (float) rb_dlink_list_length(&root_p->serv->users) / (float) Count.total);