1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-07 07:46:34 +01:00

removed unneeded var, small fixes

This commit is contained in:
Jfreegman
2013-10-16 05:00:27 -04:00
parent 5f3293bfec
commit 958e77660e
3 changed files with 3 additions and 5 deletions

View File

@@ -347,7 +347,7 @@ static void load_data(Tox *m, char *path)
}
}
void chat_do_file_senders(Tox *m)
void do_file_senders(Tox *m)
{
int i;
@@ -478,7 +478,7 @@ int main(int argc, char *argv[])
while (true) {
do_tox(m, prompt);
chat_do_file_senders(m);
do_file_senders(m);
draw_active_window(m);
}