Răsfoiți Sursa

Fix issue with #17904. (#17905)

Nick Brassel 2 ani în urmă
părinte
comite
d9eb152a90
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      platforms/chibios/drivers/eeprom/eeprom_stm32.c

+ 1 - 1
platforms/chibios/drivers/eeprom/eeprom_stm32.c

@@ -273,7 +273,7 @@ uint16_t EEPROM_Init(void) {
                 eeprom_printf("DataBuf[0x%04x] = 0x%04x;\n", address, wvalue);
                 *(uint16_t *)(&DataBuf[address]) = wvalue;
             } else {
-                eeprom_printf("DataBuf[0x%04x] cannot be set to 0x%04lx [BAD ADDRESS]\n", address, wvalue);
+                eeprom_printf("DataBuf[0x%04x] cannot be set to 0x%04x [BAD ADDRESS]\n", address, wvalue);
             }
         }
     }