Skip to content

Commit 83edb62

Browse files
Change suppression number to named macro
1 parent 34b7013 commit 83edb62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/ch/HostConfigFlags.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void HostConfigFlags::RemoveArg(int& argc, _Inout_updates_to_(argc, argc) LPWSTR
9696
Assert(index >= 0 && index < argc);
9797
for (int i = index + 1; i < argc; ++i)
9898
{
99-
#pragma prefast(suppress:6385, "Operation is safe but PREfast is difficult to convince")
99+
#pragma prefast(suppress:__WARNING_READ_OVERRUN, "Operation is safe but PREfast is difficult to convince")
100100
argv[i - 1] = argv[i];
101101
}
102102
--argc;

0 commit comments

Comments
 (0)