mirror of
https://github.com/espressif/openthread.git
synced 2026-07-08 05:10:25 +00:00
[nits] unify size_t type for local variable when OT_ARRAY_LENGTH is used (#4894)
This commit is contained in:
+2
-1
@@ -3902,7 +3902,8 @@ void Interpreter::ProcessLine(char *aBuf, uint16_t aBufLength, Server &aServer)
|
||||
{
|
||||
char * aArgs[kMaxArgs] = {NULL};
|
||||
char * cmd;
|
||||
uint8_t aArgsLength = 0, i = 0;
|
||||
uint8_t aArgsLength = 0;
|
||||
size_t i = 0;
|
||||
|
||||
mServer = &aServer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user