diff options
author | corvid <corvid@dillo.org> | 2013-09-06 04:45:55 +0000 |
---|---|---|
committer | corvid <corvid@dillo.org> | 2013-09-06 04:45:55 +0000 |
commit | a7067f7bfcbde7b2180913a2cd5577442ebd02fa (patch) | |
tree | 0147db5747a91e813d2454384958b1a92a2ff3e6 | |
parent | a3792d0bf71581f58970091521967e1558f3ecc3 (diff) |
fix bug_msg
-rw-r--r-- | src/html.cc | 2 |
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; |