We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94e8701 commit d9eb152Copy full SHA for d9eb152
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