aboutsummaryrefslogtreecommitdiffstats
path: root/src/string.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-06-28 23:26:48 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:59 +0100
commita3dda1c84a9a258721e26ef57ac32d548a24c148 (patch)
tree911ee23fdc27a198e0428892d4e1ee844d10caeb /src/string.c
parentba2dc6b53c8dd840651fc9e2c10790989b9cee9f (diff)
downloadserd-a3dda1c84a9a258721e26ef57ac32d548a24c148.tar.gz
serd-a3dda1c84a9a258721e26ef57ac32d548a24c148.tar.bz2
serd-a3dda1c84a9a258721e26ef57ac32d548a24c148.zip
WIP: Make Reader always read from a ByteSource
Diffstat (limited to 'src/string.c')
-rw-r--r--src/string.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/string.c b/src/string.c
index 1f91862f..9554a009 100644
--- a/src/string.c
+++ b/src/string.c
@@ -55,6 +55,7 @@ serd_strerror(SerdStatus status)
case SERD_ERR_INVALID: return "Invalid data";
case SERD_ERR_NO_DATA: return "Unexpectd end of input";
case SERD_ERR_BAD_WRITE: return "Error writing to file";
+ case SERD_ERR_BAD_CALL: return "Invalid call";
default: break;
}
return "Unknown error"; // never reached