Commit 90405763 authored by Olivier Bertrand's avatar Olivier Bertrand

Re-fix compile error (sign-unsign) Modified filamtxt.cpp

parent 89859338
......@@ -1873,7 +1873,7 @@ PJSON SWAP::MptrJson(PJSON ojp) { // ojp is an offset
PJAR SWAP::MptrArray(PJAR ojar) {
PJAR jarp = (PJAR)MakePtr(Base, (size_t)ojar);
jarp = (PJAR)new((long long)jarp) JARRAY(NULL);
jarp = (PJAR)new((long long)jarp) JARRAY(0);
if (jarp->First) {
for (int i = 0; i < jarp->Size; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment