We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57707e0 commit 66c0ed7Copy full SHA for 66c0ed7
platforms/chibios/drivers/eeprom/eeprom_stm32.c
@@ -273,7 +273,7 @@ uint16_t EEPROM_Init(void) {
273
eeprom_printf("DataBuf[0x%04x] = 0x%04x;\n", address, wvalue);
274
*(uint16_t *)(&DataBuf[address]) = wvalue;
275
} else {
276
- 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);
277
}
278
279
0 commit comments