fix compiler warnings [NFC]
authorEtienne Bergeron <etienneb@google.com>
Tue, 19 Jul 2016 15:30:22 +0000 (15:30 +0000)
committerEtienne Bergeron <etienneb@google.com>
Tue, 19 Jul 2016 15:30:22 +0000 (15:30 +0000)
llvm-svn: 275984

compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc

index c95b358..ae1a784 100644 (file)
@@ -390,7 +390,7 @@ static inline void StrstrCheck(void *ctx, char *r, const char *s1,
 #if SANITIZER_INTERCEPT_STRSTR
 
 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_strstr, uptr called_pc,
-                              const char *s1, const char *s2, char *result);
+                              const char *s1, const char *s2, char *result)
 
 INTERCEPTOR(char*, strstr, const char *s1, const char *s2) {
   if (COMMON_INTERCEPTOR_NOTHING_IS_INITIALIZED)
@@ -413,7 +413,7 @@ INTERCEPTOR(char*, strstr, const char *s1, const char *s2) {
 #if SANITIZER_INTERCEPT_STRCASESTR
 
 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_strcasestr, uptr called_pc,
-                              const char *s1, const char *s2, char *result);
+                              const char *s1, const char *s2, char *result)
 
 INTERCEPTOR(char*, strcasestr, const char *s1, const char *s2) {
   void *ctx;
@@ -434,7 +434,7 @@ INTERCEPTOR(char*, strcasestr, const char *s1, const char *s2) {
 #if SANITIZER_INTERCEPT_MEMMEM
 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_memmem, uptr called_pc,
                               const void *s1, SIZE_T len1, const void *s2,
-                              SIZE_T len2, void *result);
+                              SIZE_T len2, void *result)
 
 INTERCEPTOR(void*, memmem, const void *s1, SIZE_T len1, const void *s2,
             SIZE_T len2) {