Mercurial > libavcodec.hg
changeset 6122:61f95f3a62e0 libavcodec
Rename two structures, identifiers starting with _[A-Z] are reserved.
author | diego |
---|---|
date | Sun, 06 Jan 2008 16:02:55 +0000 |
parents | bc59962f70b9 |
children | 8d88831a2777 |
files | qdm2.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/qdm2.c Sun Jan 06 11:47:53 2008 +0000 +++ b/qdm2.c Sun Jan 06 16:02:55 2008 +0000 @@ -97,9 +97,9 @@ /** * A node in the subpacket list */ -typedef struct _QDM2SubPNode { +typedef struct QDM2SubPNode { QDM2SubPacket *packet; ///< packet - struct _QDM2SubPNode *next; ///< pointer to next packet in the list, NULL if leaf node + struct QDM2SubPNode *next; ///< pointer to next packet in the list, NULL if leaf node } QDM2SubPNode; typedef struct {