summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-14 08:56:29 -0400
committerirungentoo <irungentoo@gmail.com>2013-08-14 08:56:29 -0400
commit4ddd91b580edc78755531b86955c8eb828ff2ad0 (patch)
treee4c94a37952fa983ee790e4fae43d0ea49c4cc98 /testing
parent661adacddf40cfa58f3981712701ac20f06697ae (diff)
Fixed small compile error on my end.
Diffstat (limited to 'testing')
-rw-r--r--testing/toxic/main.c3
-rw-r--r--testing/toxic/windows.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/testing/toxic/main.c b/testing/toxic/main.c
index d7b251dc..063c1483 100644
--- a/testing/toxic/main.c
+++ b/testing/toxic/main.c
@@ -24,9 +24,6 @@
24#include "prompt.h" 24#include "prompt.h"
25#include "friendlist.h" 25#include "friendlist.h"
26 26
27#ifndef TOXICVER
28#define TOXICVER "NOVER" //Use the -D flag to set this
29#endif
30 27
31static void init_term() 28static void init_term()
32{ 29{
diff --git a/testing/toxic/windows.h b/testing/toxic/windows.h
index 37f3e9da..7d81e814 100644
--- a/testing/toxic/windows.h
+++ b/testing/toxic/windows.h
@@ -19,6 +19,10 @@
19/* maximum window slots for WINDOW_STATUS array */ 19/* maximum window slots for WINDOW_STATUS array */
20#define MAX_WINDOW_SLOTS N_DEFAULT_WINS+MAX_FRIENDS_NUM 20#define MAX_WINDOW_SLOTS N_DEFAULT_WINS+MAX_FRIENDS_NUM
21 21
22#ifndef TOXICVER
23#define TOXICVER "NOVER" //Use the -D flag to set this
24#endif
25
22typedef struct ToxWindow_ ToxWindow; 26typedef struct ToxWindow_ ToxWindow;
23 27
24struct ToxWindow_ { 28struct ToxWindow_ {