Merge pull request #13316 from hoogmin/minor-first
Refactor: infinite loop based on Dolphin's style guidelines
This commit is contained in:
commit
cd3993708f
|
@ -24,7 +24,7 @@ bool IsTAPDevice(const TCHAR* guid)
|
|||
if (status != ERROR_SUCCESS)
|
||||
return false;
|
||||
|
||||
for (;;)
|
||||
while (true)
|
||||
{
|
||||
TCHAR enum_name[256];
|
||||
TCHAR unit_string[256];
|
||||
|
|
Loading…
Reference in New Issue