Browse Source

Fix issue with #17904. (#17905)

Nick Brassel 2 năm trước cách đây
mục cha
commit
d9eb152a90
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
             }
         }
     }