From: Julian Seward Date: Tue, 12 Jul 2011 13:50:59 +0000 (+0000) Subject: Un-break the build on most platforms following r11888. Oops. X-Git-Tag: svn/VALGRIND_3_7_0~348 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8941601fef3a331da89bb1b36241284ba8ba138b;p=thirdparty%2Fvalgrind.git Un-break the build on most platforms following r11888. Oops. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11889 --- diff --git a/coregrind/m_replacemalloc/vg_replace_malloc.c b/coregrind/m_replacemalloc/vg_replace_malloc.c index 647cdfd735..19b9f3be69 100644 --- a/coregrind/m_replacemalloc/vg_replace_malloc.c +++ b/coregrind/m_replacemalloc/vg_replace_malloc.c @@ -95,7 +95,7 @@ static inline void my_exit ( int x ) while (1) {} # else extern void _exit(int status); - _exit(x) + _exit(x); # endif } diff --git a/memcheck/mc_replace_strmem.c b/memcheck/mc_replace_strmem.c index 250d2de0e7..782e492f35 100644 --- a/memcheck/mc_replace_strmem.c +++ b/memcheck/mc_replace_strmem.c @@ -99,7 +99,7 @@ static inline void my_exit ( int x ) while (1) {} # else extern void _exit(int status); - _exit(x) + _exit(x); # endif }