diff options
author | Michael McVady <femtonaut@gmail.com> | 2021-08-21 18:03:08 -0500 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2021-08-21 18:03:08 -0500 |
commit | 3ae9f3fd34e648a63ea57f5e193f9a88ecff18a0 (patch) | |
tree | 78646a8f8c3f8fe77e8c802de2d0c221edb41cf9 /src/clog.c | |
parent | f44dddb3be440af05abbe5d683c797f21d95eb00 (diff) |
Fix kore_buf_alloc call
Diffstat (limited to 'src/clog.c')
-rw-r--r-- | src/clog.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ int page(struct http_request *); int page(struct http_request *req) { struct kore_buf *buf; - buf = kore_buf_alloc(); + buf = kore_buf_alloc(2048); kore_buf_append(buf, asset_index_begin_html, asset_len_index_begin_html); kore_buf_append(buf, asset_index_end_html, asset_len_index_end_html); |