From 9ca6961c157ae999557857051cea1a439573678e Mon Sep 17 00:00:00 2001 From: skarg Date: Sun, 23 May 2010 12:33:45 +0000 Subject: [PATCH] Cleaned up warnings on GCC on Linux. --- bacnet-stack/demo/epics/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacnet-stack/demo/epics/main.c b/bacnet-stack/demo/epics/main.c index 41c67b5e..87e63196 100644 --- a/bacnet-stack/demo/epics/main.c +++ b/bacnet-stack/demo/epics/main.c @@ -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); } }