From cdd218e71b77f26d2ed96e5a13ffd715b8694271 Mon Sep 17 00:00:00 2001 From: Jason Watkins Date: Mon, 20 Jun 2016 09:02:17 -0700 Subject: [PATCH] Fixed typo in readDATA error message --- C/src/xplaneConnect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C/src/xplaneConnect.c b/C/src/xplaneConnect.c index 4382559..ffa1a39 100755 --- a/C/src/xplaneConnect.c +++ b/C/src/xplaneConnect.c @@ -329,7 +329,7 @@ int readDATA(XPCSocket sock, float data[][9], int rows) // shouldn't be trying to read nearly this much data at once anyway. if (rows > 134) { - printError("sendDATA", "Too many rows."); + printError("readDATA", "Too many rows."); // Read as much as we can anyway rows = 134; }