Remove warning related signedness
[platform/core/connectivity/zigbee-manager.git] / common / include / zigbee_zcl_on_off_type.h
index 99bf544..479f677 100644 (file)
@@ -30,9 +30,9 @@
  * @since_tizen 3.0
  */
 typedef struct {
-       short node_id; /**< Node ID */
-       char endpoint; /**< Endpoint */
-       char on_off_type; /**< ON/OFF type */
+       unsigned short node_id; /**< Node ID */
+       unsigned char endpoint; /**< Endpoint */
+       unsigned char on_off_type; /**< ON/OFF type */
 } ZigbeeZclOnOffSetOnOff_t;
 
 /**
@@ -40,8 +40,8 @@ typedef struct {
  * @since_tizen 3.0
  */
 typedef struct {
-       short node_id; /**< Node ID */
-       char endpoint; /**< Endpoint */
+       unsigned short node_id; /**< Node ID */
+       unsigned char endpoint; /**< Endpoint */
 } ZigbeeZclOnOffGetOnOffState_t;
 
 /* -----------------------------------------------------------------------------
@@ -53,7 +53,7 @@ typedef struct {
  * @since_tizen 3.0
  */
 typedef struct {
-       char state; /**< ON/OFF state */
+       unsigned char state; /**< ON/OFF state */
 } ZigbeeZclOnOffOnOffState_t;
 
 #endif /* __ZIGBEE_ZCL_ON_OFF_TYPE_H__ */