diff options
author | turret <turret@duck.com> | 2024-03-30 21:23:48 -0500 |
---|---|---|
committer | turret <turret@duck.com> | 2024-03-30 21:23:48 -0500 |
commit | e9cf9c79ff159b59cfc61887ad8a69164785a1c9 (patch) | |
tree | 4fb3800fddcce1e7d6e4df4a9c376c516e391aaa /util | |
parent | ff9add1ee175bbf67ce9aeed5fbe11c175bc4ed7 (diff) | |
download | discord-bot-skeleton-e9cf9c79ff159b59cfc61887ad8a69164785a1c9.tar.gz discord-bot-skeleton-e9cf9c79ff159b59cfc61887ad8a69164785a1c9.tar.bz2 discord-bot-skeleton-e9cf9c79ff159b59cfc61887ad8a69164785a1c9.zip |
log: increase buffer size
Diffstat (limited to 'util')
-rw-r--r-- | util/log.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -78,10 +78,9 @@ static int vaprint(const char *fmt, va_list ap) /* we essentially print the user's raw input to its own buffer, later we will parse it and print out ANSI colors and what not */ - char buf[512]; + char *buf = malloc(1<<16); - vsnprintf(buf, 512, fmt, ap); - buf[512 - 1] = '\0'; + vsnprintf(buf, 1<<16, fmt, ap); size_t colon = 0; if(parsecolon) { |