summaryrefslogtreecommitdiff
path: root/src/util/Assert.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/Assert.cpp')
-rw-r--r--src/util/Assert.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Assert.cpp b/src/util/Assert.cpp
index 799af12ab..a86e2021a 100644
--- a/src/util/Assert.cpp
+++ b/src/util/Assert.cpp
@@ -28,7 +28,7 @@ void AssertionException::construct(const char* header, const char* extra,
va_list args) {
// try building the exception msg with a smallish buffer first,
// then with a larger one if sprintf tells us to.
- int n = 256;
+ int n = 512;
char* buf;
for(;;) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback