Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJai Menon <realityman@gmx.net>2008-12-13 16:11:42 +0300
committerDiego Biurrun <diego@biurrun.de>2008-12-13 16:11:42 +0300
commitf98dcdedda9cd881db3d67f73ebca934a5b4522d (patch)
tree5a1f9ace5044788cb37f72dbc9accdf1b63d4b73 /libavformat/iff.c
parentdb95d3bf5038a19ecc91f3b11529b9b30260d118 (diff)
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
Diffstat (limited to 'libavformat/iff.c')
-rw-r--r--libavformat/iff.c2
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;