Warnings about implicit long-to-int conversion on iOS 64-bit build
When building for iOS 64-bit, I get warnings like this in bitwise.c and framing.c:
warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
These can be silenced by adding explicit (int) casts.