浏览代码

Fix issue with #17904. (#17905)

Nick Brassel 2 年之前
父节点
当前提交
d9eb152a90
共有 1 个文件被更改,包括 1 次插入1 次删除
  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);
             }
         }
     }