From b10217b7bc2a2930c4f89893a1c13021c8724a8c Mon Sep 17 00:00:00 2001 From: skarg Date: Mon, 20 Feb 2006 21:15:38 +0000 Subject: [PATCH] fixing code that caused a compiler warning. --- bacnet-stack/bacdcode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacnet-stack/bacdcode.c b/bacnet-stack/bacdcode.c index 58d23a07..bee63eb5 100644 --- a/bacnet-stack/bacdcode.c +++ b/bacnet-stack/bacdcode.c @@ -1704,7 +1704,7 @@ void testBACDCodeSignedValue(Test * pTest, int32_t value) { uint8_t array[5] = { 0 }; uint8_t encoded_array[5] = { 0 }; - int32 decoded_value = 0; + int32_t decoded_value = 0; int len = 0, apdu_len = 0; uint8_t apdu[MAX_APDU] = { 0 }; uint8_t tag_number = 0;