Removed compiler warning - Comparison between signed and unsigned integers 55/32755/1
authorAnkur <ankur29.garg@samsung.com>
Tue, 23 Dec 2014 13:22:50 +0000 (18:52 +0530)
committerAnkur <ankur29.garg@samsung.com>
Tue, 23 Dec 2014 13:24:40 +0000 (18:54 +0530)
commit3357e9c9ca08a1ac689ad51b5841747722cc05f4
treeccfe9be3af8fea53f3004d7d5b15954c546909cf
parent0228a685dce1274b3ddda4cbdd6c684c774eeb67
Removed compiler warning - Comparison between signed and unsigned integers

-In client.cpp, the variable was an index for 'for' loop, and was always positive, so can be changed on unsigned.
-In sensor_plugin_loader.cpp, the variable was intialized with a variable which was unsigned int, and later was right shifted
which will remain positive, so can be changed to unsigned int

Change-Id: I9efeea4c4a90186378eefbe24f76eb945ae9a3db
src/libsensord/client.cpp
src/shared/sensor_plugin_loader.cpp