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 * @since Version 2.0.0
**/ **/
char * WINAPI tdGetErrorString(int intErrorNo) { char * WINAPI tdGetErrorString(int intErrorNo) {
const int numResponses = 10; const int numResponses = 11;
const char *responses[numResponses] = { const char *responses[numResponses] = {
"Success", "Success",
"TellStick not found", "TellStick not found",
@ -1012,7 +1012,7 @@ char * WINAPI tdGetErrorString(int intErrorNo) {
"Could not connect to the Telldus Service", "Could not connect to the Telldus Service",
"Received an unknown response", "Received an unknown response",
"Syntax error", "Syntax error",
"Broken pipe" "Broken pipe",
"An error occurred while communicating with the Telldus Service" "An error occurred while communicating with the Telldus Service"
}; };
std::string strReturn; std::string strReturn;