error.c: Add missing entries.

This commit is contained in:
Uwe Hermann 2014-09-01 00:08:23 +02:00
parent 78132e2a13
commit 129d5bc961
1 changed files with 4 additions and 0 deletions

View File

@ -113,6 +113,8 @@ SR_API const char *sr_strerror_name(int error_code)
*/ */
switch (error_code) { switch (error_code) {
case SR_OK_CONTINUE:
return "SR_OK_CONTINUE";
case SR_OK: case SR_OK:
return "SR_OK"; return "SR_OK";
case SR_ERR: case SR_ERR:
@ -133,6 +135,8 @@ SR_API const char *sr_strerror_name(int error_code)
return "SR_ERR_TIMEOUT"; return "SR_ERR_TIMEOUT";
case SR_ERR_CHANNEL_GROUP: case SR_ERR_CHANNEL_GROUP:
return "SR_ERR_CHANNEL_GROUP"; return "SR_ERR_CHANNEL_GROUP";
case SR_ERR_DATA:
return "SR_ERR_DATA";
default: default:
return "unknown error code"; return "unknown error code";
} }