Fix compile.

This commit is contained in:
Steve Checkoway
2004-03-08 00:07:42 +00:00
parent 84a38d3bf1
commit 840434dd49
+2 -2
View File
@@ -1553,8 +1553,8 @@ XNode* Profile::AwardRecord::CreateNode() const
XNode* pNode = new XNode;
pNode->name = "AwardRecord";
pNode->AppendChild( "FirstTime", first );
pNode->AppendChild( "LastTime", last );
pNode->AppendChild( "FirstTime", int(first) );
pNode->AppendChild( "LastTime", int(last) );
pNode->AppendChild( "Count", iCount );
return pNode;