summaryrefslogtreecommitdiff
path: root/src/error.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2011-05-30 17:41:35 -0500
committerJohn Wiegley <johnw@newartisans.com>2011-05-30 17:41:35 -0500
commit11a9063958ea84293fd74243a5391c0de20f3951 (patch)
tree8183e71a22f41bb43601cf29f9ef2ddfc2a801f1 /src/error.cc
parenta98db790651b5f1f2b15fdc49110135d86acbf4d (diff)
downloadfork-ledger-11a9063958ea84293fd74243a5391c0de20f3951.tar.gz
fork-ledger-11a9063958ea84293fd74243a5391c0de20f3951.tar.bz2
fork-ledger-11a9063958ea84293fd74243a5391c0de20f3951.zip
Increased an assertion's length limit
Diffstat (limited to 'src/error.cc')
-rw-r--r--src/error.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.cc b/src/error.cc
index c6309702..02413ef6 100644
--- a/src/error.cc
+++ b/src/error.cc
@@ -90,7 +90,7 @@ string source_context(const path& file,
return _("<no source context>");
assert(len > 0);
- assert(len < 2048);
+ assert(len < 8192);
std::ostringstream out;