From 8190d76086e57a4b07e7ed39af3748a470f53b89 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 21 Aug 2020 16:47:54 -0400 Subject: Use a static buffer for base directory paths --- chat.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'chat.h') diff --git a/chat.h b/chat.h index 6b4de93..1ac37b9 100644 --- a/chat.h +++ b/chat.h @@ -294,12 +294,8 @@ void logFormat(uint id, const time_t *time, const char *format, ...) __attribute__((format(printf, 3, 4))); void logClose(void); -const char *configPath( - char *buf, size_t cap, const char **dirs, const char *path -); -const char *dataPath( - char *buf, size_t cap, const char **dirs, const char *path -); +const char *configPath(const char **dirs, const char *path); +const char *dataPath(const char **dirs, const char *path); FILE *configOpen(const char *path, const char *mode); FILE *dataOpen(const char *path, const char *mode); void dataMkdir(const char *path); -- cgit 1.4.1