diff options
author | John Wiegley <johnw@newartisans.com> | 2020-04-26 19:06:03 -0700 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2020-04-26 19:06:03 -0700 |
commit | d31e41659fefc04cf82f0d1cea5dd7f68f4f9664 (patch) | |
tree | 8032fae70ead4d316d29de61e61e46d42c0853d4 /src/error.cc | |
parent | 4a86fe57a1b303bbfc983fba5e2ca4d35aee2416 (diff) | |
download | fork-ledger-d31e41659fefc04cf82f0d1cea5dd7f68f4f9664.tar.gz fork-ledger-d31e41659fefc04cf82f0d1cea5dd7f68f4f9664.tar.bz2 fork-ledger-d31e41659fefc04cf82f0d1cea5dd7f68f4f9664.zip |
Increase the error display text limit
Diffstat (limited to 'src/error.cc')
-rw-r--r-- | src/error.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.cc b/src/error.cc index 1ab92840..837d7499 100644 --- a/src/error.cc +++ b/src/error.cc @@ -88,7 +88,7 @@ string source_context(const path& file, return _("<no source context>"); assert(len > 0); - assert(len < 8192); + assert(len < 65536); std::ostringstream out; |