diff qdm2.c @ 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 2b72f9bc4f06
children 39cd8d3d5b9e
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 {