Index: fpdfsdk/src/javascript/util.cpp |
diff --git a/fpdfsdk/src/javascript/util.cpp b/fpdfsdk/src/javascript/util.cpp |
index 26c59a32ad333aea8cd074724be2000319744f16..e051cda66ea0d04a9d4d03a52102e6910ccf84d9 100644 |
--- a/fpdfsdk/src/javascript/util.cpp |
+++ b/fpdfsdk/src/javascript/util.cpp |
@@ -603,10 +603,10 @@ FX_BOOL util::scand(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& |
return TRUE; |
} |
-FX_INT64 FX_atoi64(const char *nptr) |
+int64_t FX_atoi64(const char *nptr) |
{ |
int c; /* current char */ |
- FX_INT64 total; /* current total */ |
+ int64_t total; /* current total */ |
int sign; /* if '-', then negative, otherwise positive */ |
/* skip whitespace */ |