# HG changeset patch # User diego # Date 1199635375 0 # Node ID 61f95f3a62e03b8fa7278122b8d47b61240dc542 # Parent bc59962f70b967ce690cd72b935a866bf04c301d Rename two structures, identifiers starting with _[A-Z] are reserved. diff -r bc59962f70b9 -r 61f95f3a62e0 qdm2.c --- 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 {