Commit 300f0926 authored by Felix Paul Kühne's avatar Felix Paul Kühne

include/vlc_codecs.h: added pack(pop) counterpart to pack(push) for certain apple platforms

parent e6e4132c
......@@ -208,8 +208,10 @@ ATTR_PACKED
} VIDEOINFO;
#endif
#if defined(__SUNPRO_C) || (defined(__APPLE__) && !HAVE_ATTRIBUTE_PACKED)
#if defined(__SUNPRO_C)
# pragma pack()
#elif defined(__APPLE__) && !HAVE_ATTRIBUTE_PACKED
# pragma pack(pop)
#endif
/* WAVE format wFormatTag IDs */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment