Skip to content

Commit 56513e3

Browse files
committed
[sanitizers] remove extra comma for sha2 interceptors
1 parent 0e3a5f1 commit 56513e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9081,10 +9081,10 @@ INTERCEPTOR(char *, MD2Data, const unsigned char *data, unsigned int len,
90819081
return ret; \
90829082
}
90839083

9084-
SHA2_INTERCEPTORS(224, u32);
9085-
SHA2_INTERCEPTORS(256, u32);
9086-
SHA2_INTERCEPTORS(384, u64);
9087-
SHA2_INTERCEPTORS(512, u64);
9084+
SHA2_INTERCEPTORS(224, u32)
9085+
SHA2_INTERCEPTORS(256, u32)
9086+
SHA2_INTERCEPTORS(384, u64)
9087+
SHA2_INTERCEPTORS(512, u64)
90889088

90899089
#define INIT_SHA2_INTECEPTORS(LEN) \
90909090
COMMON_INTERCEPT_FUNCTION(SHA##LEN##_Init); \

0 commit comments

Comments
 (0)