aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2017-12-15 09:59:04 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-12-15 09:59:04 +0000
commitf50d711795a541515fd01b10529a2bfe5701cae9 (patch)
treedb061a299606d4ca4caff0d0d1df67f553e4c281
parent92cbe3cd0e47771f0fc8e3349ca87a9aa172bb25 (diff)
parent393ef9ddac5594607e72f01313739b8ec689ac21 (diff)
downloadlibese-f50d711795a541515fd01b10529a2bfe5701cae9.tar.gz
Fix compiler warning. am: df52de7a3a am: 12cad722ec
am: 393ef9ddac Change-Id: Ibb30f5ee1fbbc6fd54fd233a2637c8d06914b3af
-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;