https://github.com/llvm/llvm-project/issues/52979
Though SpaceAfterCStyleCast is set to true, clang-format 13 does not add a space after (void *) here:
#define CONF_BOOL(conf, offset) (bool *) (void *)((char *) (conf) + (offset))
This patch addresses that
Fixes: #52979
Nit.