[scudo] Silent warning for u64 -> u32 convertion

Error is raised because of using -Werror=convertion

GitOrigin-RevId: 1b0436cd4b7ebac7de33c5ede7b3509c811cc7e1
diff --git a/stack_depot.h b/stack_depot.h
index c4d9b27..f2f4d95 100644
--- a/stack_depot.h
+++ b/stack_depot.h
@@ -121,7 +121,7 @@
     u64 HashWithTagBit = (u64(Hash) << 1) | 1;
     if ((Entry & 0x1ffffffff) != HashWithTagBit)
       return false;
-    u32 Size = Entry >> 33;
+    u32 Size = u32(Entry >> 33);
     if (Size >= RingSize)
       return false;
     *RingPosPtr = (RingPos + 1) & RingMask;