diff options
Diffstat (limited to 'src/string.c')
-rw-r--r-- | src/string.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string.c b/src/string.c index 8b679bb6..07513739 100644 --- a/src/string.c +++ b/src/string.c @@ -37,6 +37,8 @@ serd_strerror(const SerdStatus status) return (const uint8_t*)"Invalid CURIE"; case SERD_ERR_INTERNAL: return (const uint8_t*)"Internal error"; + case SERD_ERR_BAD_WRITE: + return (const uint8_t*)"Error writing to file/stream"; } return (const uint8_t*)"Unknown error"; // never reached } |