Cleaned up warnings on GCC on Linux.

This commit is contained in:
skarg
2010-05-23 12:33:45 +00:00
parent adee8fd74c
commit 9ca6961c15
+2 -2
View File
@@ -546,12 +546,12 @@ void PrintReadPropertyData(
* handling the proprietary property numbers.
* @param propertyIdentifier [in] The property identifier number.
*/
void Print_Property_Identifier(uint32_t propertyIdentifier)
void Print_Property_Identifier(unsigned propertyIdentifier)
{
if (propertyIdentifier < 512) {
fprintf(stdout, "%s", bactext_property_name(propertyIdentifier));
} else {
fprintf(stdout, "proprietary %lu", propertyIdentifier);
fprintf(stdout, "proprietary %u", propertyIdentifier);
}
}