diff options
author | corvid <devnull@localhost> | 2014-08-03 22:28:57 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-08-03 22:28:57 +0000 |
commit | 52722da24c6ce326dc7119c85d2af3cde7b88f44 (patch) | |
tree | 4fb42eaf03690617a4431ba261146e64944a1c8d | |
parent | 1a375d0f0b47d6e7985e3a7b9b93d6fa727aa041 (diff) |
BUG_MSG
-rw-r--r-- | src/html.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html.cc b/src/html.cc index f2d92765..4b2804f8 100644 --- a/src/html.cc +++ b/src/html.cc @@ -1528,8 +1528,8 @@ static int bool valid = *val && !strchr(val, ' '); if (!valid) { - BUG_MSG("'%s' value must not be empty and must not contain spaces.\n", - attrname); + BUG_MSG("'%s' value \"%s\" must not be empty and must not contain " + "spaces.\n", attrname, val); } return valid ? 1 : 0; } else { |