summaryrefslogtreecommitdiff
path: root/testing/nTox.c
diff options
context:
space:
mode:
authorTim Malte Gräfje <Tim.Graefje@gmx.de>2013-08-04 13:01:20 +0200
committerTim Malte Gräfje <Tim.Graefje@gmx.de>2013-08-04 13:01:20 +0200
commit0259cb0194901c7d85ea7cd7749fdeed5a6d3761 (patch)
tree16bc2ad99581b47f6524c2e4da6a6380599bd0cf /testing/nTox.c
parent170af10204d2698374725f10195eab281551d9a2 (diff)
added fix in nTox_win32.c
Diffstat (limited to 'testing/nTox.c')
-rw-r--r--testing/nTox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/nTox.c b/testing/nTox.c
index f76c6c2a..eabb3f28 100644
--- a/testing/nTox.c
+++ b/testing/nTox.c
@@ -234,7 +234,7 @@ void line_eval(char *line)
234 else if (inpt_command == 'a') { 234 else if (inpt_command == 'a') {
235 uint8_t numf = atoi(line + 3); 235 uint8_t numf = atoi(line + 3);
236 char numchar[100]; 236 char numchar[100];
237 if(numf >= num_requests || pending_requests[numf].accepted) { 237 if (numf >= num_requests || pending_requests[numf].accepted) {
238 sprintf(numchar,"[i] you either didn't receive that request or you already accepted it"); 238 sprintf(numchar,"[i] you either didn't receive that request or you already accepted it");
239 new_lines(numchar); 239 new_lines(numchar);
240 } else { 240 } else {