[nits] unify size_t type for local variable when OT_ARRAY_LENGTH is used (#4894)

This commit is contained in:
Rongli Sun
2020-04-28 15:55:22 +08:00
committed by Jonathan Hui
parent 79f1d4c5c8
commit c8efee95f3
8 changed files with 26 additions and 25 deletions
+2 -1
View File
@@ -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;