Fixed various compiler warnings. Thank you, Morten Kvistgaard!

This commit is contained in:
skarg
2013-12-09 20:31:47 +00:00
parent 7f58784576
commit 9fb6b9107a
4 changed files with 14 additions and 5 deletions
+2 -2
View File
@@ -1670,8 +1670,8 @@ void TL_fetch_property(
{
uint8_t ValueBuf[MAX_APDU]; /* This is a big buffer in case someone selects the device object list for example */
uint8_t StatusBuf[3]; /* Should be tag, bits unused in last octet and 1 byte of data */
BACNET_ERROR_CLASS error_class;
BACNET_ERROR_CODE error_code;
BACNET_ERROR_CLASS error_class = 0;
BACNET_ERROR_CODE error_code = ERROR_CODE_SUCCESS;
int iLen;
uint8_t ucCount;
TL_LOG_INFO *CurrentLog;