Add error string for SR_OK_CONTINUE.

This commit is contained in:
Bert Vermeulen 2014-08-28 00:19:36 +02:00
parent b7f446051c
commit aad21bd866
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,8 @@ SR_API const char *sr_strerror(int error_code)
*/ */
switch (error_code) { switch (error_code) {
case SR_OK_CONTINUE:
return "not enough data to decide error status yet";
case SR_OK: case SR_OK:
return "no error"; return "no error";
case SR_ERR: case SR_ERR: