Fixed compiler warnings about snprintf truncations

This commit is contained in:
matt335672 2020-08-21 12:20:31 +01:00
parent 8822771169
commit 61b9a42fc5
1 changed files with 1 additions and 3 deletions

View File

@ -555,9 +555,7 @@ log_message(const enum logLevels lvl, const char *msg, ...)
now_t = time(&now_t);
now = localtime(&now_t);
snprintf(buff, 21, "[%.4d%.2d%.2d-%.2d:%.2d:%.2d] ", now->tm_year + 1900,
now->tm_mon + 1, now->tm_mday, now->tm_hour, now->tm_min,
now->tm_sec);
strftime(buff, 21, "[%Y%m%d-%H:%M:%S] ", now);
internal_log_lvl2str(lvl, buff + 20);