1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-03 01:06:44 +02:00

rm unused argument for sort func

This commit is contained in:
Jfreegman
2014-03-13 23:30:44 -04:00
parent ac82961bea
commit d8d198c81c
5 changed files with 24 additions and 17 deletions

View File

@ -477,7 +477,7 @@ void prompt_init_statusbar(ToxWindow *self, Tox *m)
snprintf(statusbar->nick, sizeof(statusbar->nick), "%s", nick);
/* temporary until statusmessage saving works */
/* load prev status message or show toxic version if it has never been set */
uint8_t ver[strlen(TOXICVER) + 1];
strcpy(ver, TOXICVER);
uint8_t *toxic_ver = strtok(ver, "_");