diff options
author | RGIB <gibellini.roberto@gmail.com> | 2016-12-02 21:06:40 +0100 |
---|---|---|
committer | RGIB <gibellini.roberto@gmail.com> | 2016-12-02 21:06:40 +0100 |
commit | dd8fa5a29f31884003b25947ae2146e6b096493b (patch) | |
tree | 17d74456cab835fd9a1350856bee280f0d70893d | |
parent | 1775ca6d7c67c069f91b4e19869179794d344eb1 (diff) | |
download | device_samsung_kona-common-dd8fa5a29f31884003b25947ae2146e6b096493b.zip device_samsung_kona-common-dd8fa5a29f31884003b25947ae2146e6b096493b.tar.gz device_samsung_kona-common-dd8fa5a29f31884003b25947ae2146e6b096493b.tar.bz2 |
kona : fix derp and use string.h
Change-Id: I7b522c99a78b9b7b09fb3a78046c5dc4c4ac5fc5
-rw-r--r-- | libsensors/CompassSensor.cpp | 2 | ||||
-rw-r--r-- | libsensors/InputEventReader.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libsensors/CompassSensor.cpp b/libsensors/CompassSensor.cpp index f45a240..270e205 100644 --- a/libsensors/CompassSensor.cpp +++ b/libsensors/CompassSensor.cpp @@ -22,7 +22,7 @@ #include <dirent.h> #include <sys/select.h> #include <cutils/log.h> -#include <string.h +#include <string.h> #include "CompassSensor.h" diff --git a/libsensors/InputEventReader.cpp b/libsensors/InputEventReader.cpp index 89cc438..fcab927 100644 --- a/libsensors/InputEventReader.cpp +++ b/libsensors/InputEventReader.cpp @@ -25,7 +25,7 @@ #include <linux/input.h> #include <cutils/log.h> -#include <cstring> +#include <string.h> #include "InputEventReader.h" /*****************************************************************************/ |