mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[ROSTESTS] sertest.c: Replace a busy loop with 'Sleep()' (#2886)
Detected by Cppcheck: uninitvar. ROSTESTS-204 Co-authored-by: Victor Martinez <vicmarcal@gmail.com>
This commit is contained in:
parent
fbb612f41a
commit
7187b4d846
1 changed files with 1 additions and 5 deletions
|
@ -18,8 +18,6 @@ int main(int argc, char *argv[])
|
|||
BOOL bResult;
|
||||
HANDLE hPort;
|
||||
int i;
|
||||
int j;
|
||||
int k;
|
||||
int nPortNum = 1;
|
||||
|
||||
TCHAR szPortName[MAX_PORTNAME_LEN];
|
||||
|
@ -56,9 +54,7 @@ int main(int argc, char *argv[])
|
|||
if (!bResult) {
|
||||
printf("WARNING: EscapeCommFunction(SETRTS) failed: %lx\n", (DWORD)bResult);
|
||||
}
|
||||
for (j = 0; j < 1000; j++) {
|
||||
k *= j;
|
||||
}
|
||||
Sleep(500);
|
||||
/*
|
||||
#define CLRDTR (6)
|
||||
#define CLRRTS (4)
|
||||
|
|
Loading…
Reference in a new issue