From: Nicholas Nethercote Date: Sat, 25 Jun 2005 19:52:02 +0000 (+0000) Subject: avoid compiler warning X-Git-Tag: svn/VALGRIND_3_0_0~296 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07965f509c19aefbfc8a7116c36637be093b1943;p=thirdparty%2Fvalgrind.git avoid compiler warning git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4022 --- diff --git a/coregrind/m_stacktrace.c b/coregrind/m_stacktrace.c index 0aecc6f9d6..08e4b0ad08 100644 --- a/coregrind/m_stacktrace.c +++ b/coregrind/m_stacktrace.c @@ -65,6 +65,7 @@ /* Take a snapshot of the client's stack, putting the up to 'n_ips' IPs into 'ips'. In order to be thread-safe, we pass in the thread's IP and FP. Returns number of IPs put in 'ips'. */ +static UInt VG_(get_StackTrace2) ( Addr* ips, UInt n_ips, Addr ip, Addr sp, Addr fp, Addr fp_min, Addr fp_max_orig )