aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/html.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html.cc b/src/html.cc
index 2145fc42..3abc338f 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -1519,7 +1519,7 @@ static int
bool valid = *val && !strchr(val, ' ');
if (!valid) {
- BUG_MSG("'%s' value '%s' must not be empty and must not contain "
+ BUG_MSG("'%s' value \"%s\" must not be empty and must not contain "
"spaces.", attrname, val);
}
return valid ? 1 : 0;
@@ -1531,7 +1531,7 @@ static int
break;
if (val[i] || !(isascii(val[0]) && isalpha(val[0])))
- BUG_MSG("%s attribute value '%s' is not of the form "
+ BUG_MSG("%s attribute value \"%s\" is not of the form "
"'[A-Za-z][A-Za-z0-9:_.-]*'.", attrname, val);
return !(val[i]);