summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/format.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/format.cc b/crawl-ref/source/format.cc
index f4120ce281..8f39bea3f6 100644
--- a/crawl-ref/source/format.cc
+++ b/crawl-ref/source/format.cc
@@ -149,7 +149,7 @@ void formatted_string::parse_string1(
{
// Break the string at the end of a line, if possible, so
// that none of the broken string ends up overwritten.
- std::string::size_type bound = currs.rfind(EOL, 999);
+ std::string::size_type bound = currs.rfind(EOL, 998);
if (bound != endpos)
bound += strlen(EOL);
else