summaryrefslogtreecommitdiffstats
path: root/lasso/xml/errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'lasso/xml/errors.c')
-rw-r--r--lasso/xml/errors.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lasso/xml/errors.c b/lasso/xml/errors.c
index 79402e3d..256d7eba 100644
--- a/lasso/xml/errors.c
+++ b/lasso/xml/errors.c
@@ -29,9 +29,9 @@ const char*
lasso_strerror(int error_code)
{
switch (error_code) {
- case LASSO_ERROR_METADATA_VALUE_NOTFOUND:
- return "Unable to get metadata value %s\n";
+ case LASSO_ERROR_XML_ATTR_VALUE_NOTFOUND:
+ return "Unable to get '%s' attribute value in '%s' element.\n";
default:
- return "Undefined error code !\n";
+ return "Undefined error code !!!\n";
}
}