looks like some lines are longer than 128

This commit is contained in:
rusefi 2022-05-19 22:33:50 -04:00
parent e4866e5662
commit dd22cc520f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ void scheduleLogging(Logging *logging);
// Stores the result of one call to efiPrintfInternal in the queue to be copied out to the output buffer
struct LogLineBuffer {
char buffer[128];
char buffer[256];
};
template <size_t TBufferSize>