Fix output parameter type for _BitScanReverse (#819)

Fix #811
diff --git a/c/common/platform.h b/c/common/platform.h
index 76b6bba..3306cf9 100644
--- a/c/common/platform.h
+++ b/c/common/platform.h
@@ -549,9 +549,9 @@
 #define BROTLI_BSR32(x) (31u ^ (uint32_t)__builtin_clz(x))
 #elif BROTLI_MSVC_VERSION_CHECK(12, 0, 0)
 static BROTLI_INLINE uint32_t BrotliBsr32Msvc(uint32_t x) {
-  uint32_t msb;
+  unsigned long msb;
   _BitScanReverse(&msb, x);
-  return msb;
+  return (uint32_t)msb;
 }
 #define BROTLI_BSR32 BrotliBsr32Msvc
 #endif /* __builtin_clz */