aboutsummaryrefslogtreecommitdiff
path: root/src/html.cc
diff options
context:
space:
mode:
authorcorvid <corvid@dillo.org>2013-09-06 04:45:55 +0000
committercorvid <corvid@dillo.org>2013-09-06 04:45:55 +0000
commita7067f7bfcbde7b2180913a2cd5577442ebd02fa (patch)
tree0147db5747a91e813d2454384958b1a92a2ff3e6 /src/html.cc
parenta3792d0bf71581f58970091521967e1558f3ecc3 (diff)
fix bug_msg
Diffstat (limited to 'src/html.cc')
-rw-r--r--src/html.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc
index c859bef8..f515ba17 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -1515,7 +1515,7 @@ static int
bool valid = *val && !strchr(val, ' ');
if (!valid) {
- BUG_MSG("'%s' value must not be empty and must not contain spaces",
+ BUG_MSG("'%s' value must not be empty and must not contain spaces.\n",
attrname);
}
return valid ? 1 : 0;