Fixed typo in readDATA error message

This commit is contained in:
Jason Watkins
2016-06-20 09:02:17 -07:00
parent 7bd16df72b
commit cdd218e71b

View File

@@ -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;
}