1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:57:46 +02:00

Fixed small compile error on my end.

This commit is contained in:
irungentoo 2013-08-14 08:56:29 -04:00
parent 4a3292a32b
commit 56210d46f9
2 changed files with 4 additions and 3 deletions

3
main.c
View File

@ -24,9 +24,6 @@
#include "prompt.h"
#include "friendlist.h"
#ifndef TOXICVER
#define TOXICVER "NOVER" //Use the -D flag to set this
#endif
static void init_term()
{

View File

@ -19,6 +19,10 @@
/* maximum window slots for WINDOW_STATUS array */
#define MAX_WINDOW_SLOTS N_DEFAULT_WINS+MAX_FRIENDS_NUM
#ifndef TOXICVER
#define TOXICVER "NOVER" //Use the -D flag to set this
#endif
typedef struct ToxWindow_ ToxWindow;
struct ToxWindow_ {