Remove extra semi colon from internal_repo_rocksdb/repo/util/xxhash.h

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: dmm-fb

Differential Revision: D59007259

fbshipit-source-id: ee0e01e1cc14ebe183d3b74153ef77f11625d983
This commit is contained in:
Richard Barnes 2024-06-26 07:26:20 -07:00 committed by Facebook GitHub Bot
parent 6f79496475
commit a06a7fdc88
1 changed files with 1 additions and 1 deletions

View File

@ -1303,7 +1303,7 @@ struct XXH3_state_s {
* Note that this doesn't prepare the state for a streaming operation,
* it's still necessary to use XXH3_NNbits_reset*() afterwards.
*/
#define XXH3_INITSTATE(XXH3_state_ptr) { (XXH3_state_ptr)->seed = 0; }
#define XXH3_INITSTATE(XXH3_state_ptr) do { (XXH3_state_ptr)->seed = 0; } while (0)
/*!