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
|
* @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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue