Fix missing separator.
This commit is contained in:
parent
c137bca9fe
commit
eb95ffe8a5
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue