Changeset 103292 in vbox for trunk/src/VBox
- Timestamp:
- Feb 9, 2024 1:29:46 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 161586
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTProcCreateEx.cpp
r99486 r103292 580 580 581 581 int cErrors = 0; 582 for (int i = 0; i < argc; i++) 582 if (argc >= (int)RT_ELEMENTS(g_apszArgs4)) 583 { 584 RTStrmPrintf(g_pStdErr, 585 "Expected argument count to be <= %u, got %u\n", 586 argc, RT_ELEMENTS(g_apszArgs4)); 587 cErrors++; 588 } 589 590 for (int i = 0; i < RT_MIN(argc, (int)RT_ELEMENTS(g_apszArgs4) - 1); i++) 583 591 if (strcmp(argv[i], g_apszArgs4[i])) 584 592 {
Note:
See TracChangeset
for help on using the changeset viewer.