Fix missing separator.

This commit is contained in:
Micke Prag 2012-04-13 10:55:24 +02:00
parent c137bca9fe
commit eb95ffe8a5

View file

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