From eb95ffe8a55d27399e3afaa03fadc3b8ff262c7e Mon Sep 17 00:00:00 2001 From: Micke Prag Date: Fri, 13 Apr 2012 10:55:24 +0200 Subject: [PATCH] Fix missing separator. --- telldus-core/client/telldus-core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/telldus-core/client/telldus-core.cpp b/telldus-core/client/telldus-core.cpp index b66a434f..8767ed6e 100644 --- a/telldus-core/client/telldus-core.cpp +++ b/telldus-core/client/telldus-core.cpp @@ -1001,7 +1001,7 @@ int WINAPI tdMethods(int id, int methodsSupported){ * @since Version 2.0.0 **/ char * WINAPI tdGetErrorString(int intErrorNo) { - const int numResponses = 10; + const int numResponses = 11; const char *responses[numResponses] = { "Success", "TellStick not found", @@ -1012,7 +1012,7 @@ char * WINAPI tdGetErrorString(int intErrorNo) { "Could not connect to the Telldus Service", "Received an unknown response", "Syntax error", - "Broken pipe" + "Broken pipe", "An error occurred while communicating with the Telldus Service" }; std::string strReturn;