Skip to content

Commit

Permalink
undo
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Aug 2, 2023
1 parent 9e0734d commit 80072c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cfg/std.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ void nullPointer_vfwprintf(FILE *Stream, const wchar_t *Format, va_list Arg)
(void)std::vfwprintf(Stream, Format, Arg);
}

void *bufferAccessOutOfBounds_memchr(const void *s, int c, size_t n)
void *bufferAccessOutOfBounds_memchr(void *s, int c, size_t n)
{
char buf[42]={0};
(void)std::memchr(buf,c,42);
Expand Down

0 comments on commit 80072c1

Please sign in to comment.