File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -248,12 +248,12 @@ bool UpdaterClass::end(bool evenIfRemaining){
248
248
uint32_t sigLen = 0 ;
249
249
250
250
#ifdef DEBUG_UPDATER
251
- DEBUG_UPDATER.printf_P (PSTR (" [Updater] expected sigLen: %lu \n " ), expectedSigLen);
251
+ DEBUG_UPDATER.printf_P (PSTR (" [Updater] expected sigLen: %u \n " ), expectedSigLen);
252
252
#endif
253
253
if (expectedSigLen > 0 ) {
254
254
ESP.flashRead (sigLenAddr, &sigLen, SigSize);
255
255
#ifdef DEBUG_UPDATER
256
- DEBUG_UPDATER.printf_P (PSTR (" [Updater] sigLen from flash: %lu \n " ), sigLen);
256
+ DEBUG_UPDATER.printf_P (PSTR (" [Updater] sigLen from flash: %u \n " ), sigLen);
257
257
#endif
258
258
}
259
259
@@ -272,7 +272,7 @@ bool UpdaterClass::end(bool evenIfRemaining){
272
272
}
273
273
binSize -= (sigLen + SigSize);
274
274
#ifdef DEBUG_UPDATER
275
- DEBUG_UPDATER.printf_P (PSTR (" [Updater] Adjusted size (without the signature and sigLen): %lu \n " ), binSize);
275
+ DEBUG_UPDATER.printf_P (PSTR (" [Updater] Adjusted size (without the signature and sigLen): %zu \n " ), binSize);
276
276
#endif
277
277
}
278
278
You can’t perform that action at this time.
0 commit comments