Skip to content

Commit

Permalink
[sanitizers] remove extra comma for sha2 interceptors
Browse files Browse the repository at this point in the history
  • Loading branch information
devnexen committed Nov 2, 2021
1 parent 0e3a5f1 commit 56513e3
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -9081,10 +9081,10 @@ INTERCEPTOR(char *, MD2Data, const unsigned char *data, unsigned int len,
return ret; \
}

SHA2_INTERCEPTORS(224, u32);
SHA2_INTERCEPTORS(256, u32);
SHA2_INTERCEPTORS(384, u64);
SHA2_INTERCEPTORS(512, u64);
SHA2_INTERCEPTORS(224, u32)
SHA2_INTERCEPTORS(256, u32)
SHA2_INTERCEPTORS(384, u64)
SHA2_INTERCEPTORS(512, u64)

#define INIT_SHA2_INTECEPTORS(LEN) \
COMMON_INTERCEPT_FUNCTION(SHA##LEN##_Init); \
Expand Down

0 comments on commit 56513e3

Please sign in to comment.