Fix type definitions for inner_tag and object_instance when uint32_t is defined as long unsigned int instead of unsigned int (#1293)

* Fix type definitions in bacapp.c for inner_tag and object_instance when uint32_t is defined as long unsigned int instead of unsigned int

* Change DNET_list type from int to int32_t across multiple files to avoid compiler warnings when int32_t is defined as long int instead of int.
This commit is contained in:
Steve Karg
2026-04-06 11:51:36 -05:00
committed by GitHub
parent 589a61b287
commit e77e070d90
10 changed files with 38 additions and 32 deletions
+4
View File
@@ -216,6 +216,10 @@ The git repositories are hosted at the following sites:
### Fixed
* Fixed type definition compiler warnings in DNET list when int32_t is
defined as long int instead of int on 32-bit platforms, and in bacapp
module for inner_tag and object_instance when uint32_t is defined
as long unsigned int instead of unsigned int on 32-bit platforms. (#1293)
* Fixed CMakeLists.txt by replacing BIG_ENDIAN definition with
BACNET_BIG_ENDIAN to fix missing function in builds. (#1284)
* Fixed CMakeLists.txt by adding INTRINSIC_REPORTING CMake option