Index: fpdfsdk/src/javascript/Document.cpp |
diff --git a/fpdfsdk/src/javascript/Document.cpp b/fpdfsdk/src/javascript/Document.cpp |
index c4a93ede6114b153fa2203d096a11cd17037c0be..9ea8029f6083b5c120e39750a2dab412f3c3c634 100644 |
--- a/fpdfsdk/src/javascript/Document.cpp |
+++ b/fpdfsdk/src/javascript/Document.cpp |
@@ -1213,7 +1213,7 @@ FX_BOOL Document::documentFileName(IFXJS_Context* cc, CJS_PropValue& vp, CFX_Wid |
return FALSE; |
} |
CFX_WideString wsFilePath = m_pDocument->GetPath(); |
- FX_INT32 i = wsFilePath.GetLength() - 1; |
+ int32_t i = wsFilePath.GetLength() - 1; |
for ( ; i >= 0; i-- ) |
{ |
if ( wsFilePath.GetAt( i ) == L'\\' || wsFilePath.GetAt( i ) == L'/' ) |