diff options
author | Eunyoung Lee <ey928.lee@samsung.com> | 2017-11-08 11:03:16 +0900 |
---|---|---|
committer | Eunyoung Lee <ey928.lee@samsung.com> | 2017-11-08 11:03:16 +0900 |
commit | 2917a573c575a458784e9c41d0a7e0c42366cb9a (patch) | |
tree | d8ced78a8be3a189e80a298e3f8ad63bf70fb974 | |
parent | 3eecfdbc1c335bdecc918bf442370cb51e65cef5 (diff) | |
download | position-finder-server-2917a573c575a458784e9c41d0a7e0c42366cb9a.tar.gz position-finder-server-2917a573c575a458784e9c41d0a7e0c42366cb9a.tar.bz2 position-finder-server-2917a573c575a458784e9c41d0a7e0c42366cb9a.zip |
Change the data type of value
Change-Id: I208c8e5f985af3dbab83a0aef459ceb6ae58c03a
-rw-r--r-- | src/controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller.c b/src/controller.c index 9aaeed4..1735ab7 100644 --- a/src/controller.c +++ b/src/controller.c @@ -39,7 +39,7 @@ typedef struct app_data_s { static Eina_Bool _control_sensors_cb(void *data) { app_data *ad = data; - int value = -1; + uint32_t value = -1; int ret = -1; #if 0 |