From ad647a768199a6ec53f1e0a4e87c8cabd6038ed1 Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Sat, 14 Dec 2024 10:58:16 +0100 Subject: [PATCH] bump linesize for inline image data --- storage.c | 1 - util.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/storage.c b/storage.c index e4baba4..7e808c3 100644 --- a/storage.c +++ b/storage.c @@ -40,7 +40,6 @@ char STORAGEDIR[BUFSIZ] = STORAGEDEFAULT; -#define LINESIZE 8192 #define LARGEBUF (BUFSIZ * 2) static struct gcache *gc = NULL; diff --git a/util.c b/util.c index a3246d9..a20a290 100644 --- a/util.c +++ b/util.c @@ -38,7 +38,7 @@ #include "udata.h" #ifndef LINESIZE -# define LINESIZE 8192 +# define LINESIZE (32 * 1024) #endif int is_directory(char *path)