Forráskód Böngészése

fix: OS_BufferRemove有个多余的变量i

Wendal Chen 1 éve
szülő
commit
b7329d0b0f
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      components/common/c_common.c

+ 1 - 1
components/common/c_common.c

@@ -484,7 +484,7 @@ LUAT_WEAK int32_t OS_BufferWriteLimit(Buffer_Struct *Buf, void *Data, uint32_t L
 LUAT_WEAK void OS_BufferRemove(Buffer_Struct *Buf, uint32_t Len)
 {
 	uint32_t RestLen;
-	uint32_t i;
+	// uint32_t i;
 	if (!Buf)
 		return ;
 	if (!Buf->Data)