Skip to content

Commit d9eb152

Browse files
authored
Fix issue with #17904. (#17905)
1 parent 94e8701 commit d9eb152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platforms/chibios/drivers/eeprom/eeprom_stm32.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ uint16_t EEPROM_Init(void) {
273273
eeprom_printf("DataBuf[0x%04x] = 0x%04x;\n", address, wvalue);
274274
*(uint16_t *)(&DataBuf[address]) = wvalue;
275275
} else {
276-
eeprom_printf("DataBuf[0x%04x] cannot be set to 0x%04lx [BAD ADDRESS]\n", address, wvalue);
276+
eeprom_printf("DataBuf[0x%04x] cannot be set to 0x%04x [BAD ADDRESS]\n", address, wvalue);
277277
}
278278
}
279279
}

0 commit comments

Comments
 (0)