diff options
author | Jai Menon <realityman@gmx.net> | 2008-12-13 13:11:42 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-13 13:11:42 +0000 |
commit | f98dcdedda9cd881db3d67f73ebca934a5b4522d (patch) | |
tree | 5a1f9ace5044788cb37f72dbc9accdf1b63d4b73 | |
parent | db95d3bf5038a19ecc91f3b11529b9b30260d118 (diff) | |
download | ffmpeg-f98dcdedda9cd881db3d67f73ebca934a5b4522d.tar.gz |
Avoid _t in identifier names, _t is reserved by POSIX.
patch by Jai Menon, jmenon86 gmail com
Originally committed as revision 16098 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/iff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c index 1fb94c057a..e5158f68b4 100644 --- a/libavformat/iff.c +++ b/libavformat/iff.c @@ -52,7 +52,7 @@ #define PACKET_SIZE 1024 -typedef enum {COMP_NONE, COMP_FIB, COMP_EXP} svx8_compression_t; +typedef enum {COMP_NONE, COMP_FIB, COMP_EXP} svx8_compression_type; typedef struct { uint32_t body_size; |