Put braces around for loop with empty body.
This commit is contained in:
parent
e18a70f82b
commit
82527fb92b
1 changed files with 2 additions and 1 deletions
|
|
@ -32,8 +32,9 @@ void __fastcall tmsg_add(BYTE *pbMsg, BYTE bLen)
|
|||
msg->hdr.dwTime = GetTickCount() + 500;
|
||||
msg->hdr.bLen = bLen;
|
||||
memcpy(msg->body, pbMsg, bLen);
|
||||
for (tail = &sgpTimedMsgHead; *tail; tail = &(*tail)->hdr.pNext)
|
||||
for (tail = &sgpTimedMsgHead; *tail; tail = &(*tail)->hdr.pNext) {
|
||||
;
|
||||
}
|
||||
*tail = msg;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue