@@ -67,7 +67,7 @@ SEMP_PARSE_STATE * sempAllocateParseStructure(
67
67
if (bufferLength < SEMP_MINIMUM_BUFFER_LENGTH)
68
68
{
69
69
sempPrintf (printDebug,
70
- " SEMP: Increasing bufferLength from %d to %d bytes, minimum size adjustment" ,
70
+ " SEMP: Increasing bufferLength from %ld to %d bytes, minimum size adjustment" ,
71
71
bufferLength, SEMP_MINIMUM_BUFFER_LENGTH);
72
72
bufferLength = SEMP_MINIMUM_BUFFER_LENGTH;
73
73
}
@@ -135,7 +135,7 @@ void sempPrintParserConfiguration(SEMP_PARSE_STATE *parse, Print *print)
135
135
sempPrintf (print, " parserCount: %d" , parse->parserCount );
136
136
sempPrintf (print, " printError: %p" , parse->printError );
137
137
sempPrintf (print, " printDebug: %p" , parse->printDebug );
138
- sempPrintf (print, " Scratch Pad: %p (%d bytes)" ,
138
+ sempPrintf (print, " Scratch Pad: %p (%ld bytes)" ,
139
139
(void *)parse->scratchPad , parse->buffer - (uint8_t *)parse->scratchPad );
140
140
sempPrintf (print, " computeCrc: %p" , (void *)parse->computeCrc );
141
141
sempPrintf (print, " crc: 0x%08x" , parse->crc );
0 commit comments