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