Add error string for SR_OK_CONTINUE.
This commit is contained in:
parent
b7f446051c
commit
aad21bd866
|
@ -58,6 +58,8 @@ SR_API const char *sr_strerror(int error_code)
|
|||
*/
|
||||
|
||||
switch (error_code) {
|
||||
case SR_OK_CONTINUE:
|
||||
return "not enough data to decide error status yet";
|
||||
case SR_OK:
|
||||
return "no error";
|
||||
case SR_ERR:
|
||||
|
|
Loading…
Reference in New Issue