Remove warning related signedness
[platform/core/connectivity/zigbee-manager.git] / common / include / zigbee_zcl_ias_zone_type.h
index c8c2dab..6083f75 100644 (file)
  * @since_tizen 3.0
  */
 typedef struct {
-       short node_id; /**< Node ID */
-       char dest_ep; /**< Destination endpoint */
-       char enroll_code; /**< Enroll code */
-       char zone_id; /**< Zone ID */
+       unsigned short node_id; /**< Node ID */
+       unsigned char dest_ep; /**< Destination endpoint */
+       unsigned char enroll_code; /**< Enroll code */
+       unsigned char zone_id; /**< Zone ID */
 } ZigbeeZclIasZoneEnrollResponse_t;
 
 /* --------------------------------------------------------------------------------------
@@ -45,12 +45,12 @@ typedef struct {
  * @since_tizen 3.0
  */
 typedef struct {
-       short node_id; /**< Node ID */
-       char src_ep; /**< Source endpoint */
-       short zone_status; /**< Zone status */
-       char extended_status; /**< Extended status */
-       char zone_id; /**< Zone ID */
-       short delay; /**< Delay */
+       unsigned short node_id; /**< Node ID */
+       unsigned char src_ep; /**< Source endpoint */
+       unsigned short zone_status; /**< Zone status */
+       unsigned char extended_status; /**< Extended status */
+       unsigned char zone_id; /**< Zone ID */
+       unsigned short delay; /**< Delay */
 } ZigbeeZclIasZoneStatusChangeNoti_t;
 
 /**
@@ -58,10 +58,10 @@ typedef struct {
  * @since_tizen 3.0
  */
 typedef struct {
-       short node_id; /**< Node ID */
-       char src_ep; /**< Source endpoint */
-       short zone_type; /**< Zone type */
-       char mfg_code; /**< Manufacturer code */
+       unsigned short node_id; /**< Node ID */
+       unsigned char src_ep; /**< Source endpoint */
+       unsigned short zone_type; /**< Zone type */
+       unsigned char mfg_code; /**< Manufacturer code */
 } ZigbeeZclIasEnrollRequestNoti_t;
 
 #endif /* __ZIGBEE_ZCL_IAS_ZONE_TYPE_H__ */