From aad21bd8666e7937b3d8b83b1fc0c57865dfc1ec Mon Sep 17 00:00:00 2001 From: Bert Vermeulen Date: Thu, 28 Aug 2014 00:19:36 +0200 Subject: [PATCH] Add error string for SR_OK_CONTINUE. --- src/error.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/error.c b/src/error.c index a8a46503..9956089f 100644 --- a/src/error.c +++ b/src/error.c @@ -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: