aboutsummaryrefslogtreecommitdiffstats
path: root/src/string.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-04-11 22:07:39 -0400
committerDavid Robillard <d@drobilla.net>2022-01-14 19:37:51 -0500
commite9b773bf452f0df0ea69e363bcb5899fea124b28 (patch)
tree6cec0e4c4d93e2fbb56576fc6992169bd985fd52 /src/string.c
parent37b14ad8b07f7e8d647e15a05339d31f2ee4dd58 (diff)
downloadserd-e9b773bf452f0df0ea69e363bcb5899fea124b28.tar.gz
serd-e9b773bf452f0df0ea69e363bcb5899fea124b28.tar.bz2
serd-e9b773bf452f0df0ea69e363bcb5899fea124b28.zip
Add model
Diffstat (limited to 'src/string.c')
-rw-r--r--src/string.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/string.c b/src/string.c
index 2d25fb80..11b53050 100644
--- a/src/string.c
+++ b/src/string.c
@@ -38,6 +38,8 @@ serd_strerror(const SerdStatus status)
return "Invalid syntax";
case SERD_ERR_BAD_ARG:
return "Invalid argument";
+ case SERD_ERR_BAD_CURSOR:
+ return "Invalid cursor";
case SERD_ERR_NOT_FOUND:
return "Not found";
case SERD_ERR_ID_CLASH:
@@ -58,6 +60,8 @@ serd_strerror(const SerdStatus status)
return "Invalid call";
case SERD_ERR_BAD_URI:
return "Invalid or unresolved URI";
+ case SERD_ERR_BAD_INDEX:
+ return "No optimal model index available";
}
return "Unknown error";