summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2017-02-24 08:39:28 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2017-02-24 08:39:28 -0500
commit5da5bcf37902fae4b5d443d05c8b096b460759b8 (patch)
treed6f9440aa975fe688c74df85526aa6196c379b61 /include
parent5c7051419520ca3449649dbfc68e755b45cde0f1 (diff)
Increase size of string buffer for error messages
Diffstat (limited to 'include')
-rw-r--r--include/urweb/types_cpp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/urweb/types_cpp.h b/include/urweb/types_cpp.h
index 47086791..2fa473ac 100644
--- a/include/urweb/types_cpp.h
+++ b/include/urweb/types_cpp.h
@@ -113,7 +113,7 @@ typedef struct {
uw_logger log_error, log_debug;
} uw_loggers;
-#define ERROR_BUF_LEN 1024
+#define ERROR_BUF_LEN 10240
typedef struct {
size_t max;