From 87a92bb4275a08963691b82a74ceb4144de06058 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 30 Apr 2020 19:10:36 -0400 Subject: Remove +1s I was right originally... why did I change this? --- concat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'concat.c') diff --git a/concat.c b/concat.c index ddeaa90..563cdb4 100644 --- a/concat.c +++ b/concat.c @@ -72,7 +72,7 @@ void concatData( } static const char *uidPath(uint32_t uid, const char *type) { - static char buf[PATH_MAX + 1]; + static char buf[PATH_MAX]; char str[32]; snprintf(str, sizeof(str), "%" PRIu32, uid); struct Variable vars[] = { @@ -126,7 +126,7 @@ static int concatHTML(FILE *file, struct List thread) { } static const char *threadPath(const char *messageID, const char *type) { - static char buf[PATH_MAX + 1]; + static char buf[PATH_MAX]; struct Variable vars[] = { { "messageID", messageID }, { "type", type }, -- cgit 1.4.1