object-store: avoid extra ';' from KHASH_INIT
commitdd3c8a72a2eaecf0c752a37e1f4ba4de59818e93
authorCarlo Marcelo Arenas Belón <carenas@gmail.com>
Mon, 9 Aug 2021 01:38:32 +0000 (8 18:38 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 Aug 2021 16:01:30 +0000 (9 09:01 -0700)
treeac9b0aa0162122f31d92008892554a62ab4b7bb1
parent14825944d7c57b6acd7e1a05a4c6046965efc6a5
object-store: avoid extra ';' from KHASH_INIT

cf2dc1c238 (speed up alt_odb_usable() with many alternates, 2021-07-07)
introduces a KHASH_INIT invocation with a trailing ';', which while
commonly expected will trigger warnings with pedantic on both
clang[-Wextra-semi] and gcc[-Wpedantic], because that macro has already
a semicolon and is meant to be invoked without one.

while fixing the macro would be a worthy solution (specially considering
this is a common recurring problem), remove the extra ';' for now to
minimize churn.

Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
object-store.h