From: Mark W. <ma...@so...> - 2024-11-01 03:40:41
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=25032e9bfa7f5c37d0b77d2366c1c3a45459759c commit 25032e9bfa7f5c37d0b77d2366c1c3a45459759c Author: Mark Wielaard <ma...@kl...> Date: Fri Nov 1 04:40:22 2024 +0100 Make const OpenFd *ML_(find_OpenFd) static Diff: --- coregrind/m_syswrap/syswrap-generic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/coregrind/m_syswrap/syswrap-generic.c b/coregrind/m_syswrap/syswrap-generic.c index 920c87a8ae..1d80d09288 100644 --- a/coregrind/m_syswrap/syswrap-generic.c +++ b/coregrind/m_syswrap/syswrap-generic.c @@ -1599,6 +1599,7 @@ static Addr do_brk ( Addr newbrk, ThreadId tid ) return VG_(brk_limit); } +static const OpenFd *ML_(find_OpenFd)(Int fd) { OpenFd *i = allocated_fds; |