aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2017-12-15 09:53:30 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-12-15 09:53:30 +0000
commit12cad722ec10b088ef2af6af6fb9f001eb7ccd6a (patch)
tree600e44b462f7a83594d8c077bd0e87d8da7c3166
parentad706dcdb140dfcbc1397952c6a9621e3e317436 (diff)
parentdf52de7a3abafbcc7dc126e6ff6f7edc92f44a24 (diff)
downloadlibese-12cad722ec10b088ef2af6af6fb9f001eb7ccd6a.tar.gz
Fix compiler warning.
am: df52de7a3a Change-Id: Id5b6a2314c768ede94ca3d70982ea46ce2136e5d
-rw-r--r--third_party/NXPNFC_P61_JCOP_Kit/src/JcopOsDownload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/NXPNFC_P61_JCOP_Kit/src/JcopOsDownload.cpp b/third_party/NXPNFC_P61_JCOP_Kit/src/JcopOsDownload.cpp
index 2a725ae..500b8fc 100644
--- a/third_party/NXPNFC_P61_JCOP_Kit/src/JcopOsDownload.cpp
+++ b/third_party/NXPNFC_P61_JCOP_Kit/src/JcopOsDownload.cpp
@@ -383,7 +383,7 @@ tJBL_STATUS JcopOsDwnld::GetInfo(JcopOs_ImageInfo_t* pImageInfo, tJBL_STATUS sta
#endif
{
ALOGE("Starting 3-Step update");
- memcpy(pImageInfo->fls_path, path[pImageInfo->index], sizeof(path[pImageInfo->index]));
+ memcpy(pImageInfo->fls_path, (char *)path[pImageInfo->index], sizeof(path[pImageInfo->index]));
pImageInfo->index++;
}
status = STATUS_OK;