Обновление

This commit is contained in:
cfif 2026-03-11 11:17:10 +03:00
parent 019b6bce12
commit b42c46f89a
2 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,8 @@
#include "stdbool.h"
#define MAX_COUNT_BUF_LOG 10
#define MAX_LEN_BUF_LOG 128
#define MAX_LEN_PRINTF_BUF_LOG 256
#define MAX_LEN_LOGGER_BUF_LOG 128
#define MAX_LEN_BUF_NAME_LOG 16
typedef enum {

View File

@ -762,7 +762,7 @@ void LoggerPrintf(
va_list args;
va_start(args, fmt);
result = vsnprintf(str, MAX_LEN_BUF_LOG, fmt, args);
result = vsnprintf(str, MAX_LEN_PRINTF_BUF_LOG, fmt, args);
va_end(args);