From a6adac83c6aadbacf2a338d2e55148f7d3417762 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Thu, 2 Nov 2017 19:27:08 +0000 Subject: Remove some C-style const char* casts. Change-Id: I4785dd277b9da072ee3c55e2aaeb688bbf02852e Reviewed-on: https://pdfium-review.googlesource.com/17391 Reviewed-by: dsinclair Commit-Queue: Lei Zhang --- fxjs/cjs_globaldata.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fxjs') diff --git a/fxjs/cjs_globaldata.cpp b/fxjs/cjs_globaldata.cpp index fe7d94b9a4..3f962734db 100644 --- a/fxjs/cjs_globaldata.cpp +++ b/fxjs/cjs_globaldata.cpp @@ -337,8 +337,8 @@ void CJS_GlobalData::SaveGlobalPersisitentVariables() { CRYPT_ArcFourCryptBlock(sFile.GetBuffer(), sFile.GetSize(), JS_RC4KEY, sizeof(JS_RC4KEY)); - WriteFileBuffer(m_sFilePath.c_str(), (const char*)sFile.GetBuffer(), - sFile.GetSize()); + WriteFileBuffer(m_sFilePath.c_str(), + reinterpret_cast(sFile.GetBuffer()), sFile.GetSize()); } void CJS_GlobalData::LoadFileBuffer(const wchar_t* sFilePath, -- cgit v1.2.3