Commit 878065b4 authored by Olivier Bertrand's avatar Olivier Bertrand

Fix compile error (sign-compare) Modified jsonudf.cpp jsonudf.h

parent 73850edd
...@@ -6013,7 +6013,8 @@ JUP::JUP(PGLOBAL g) { ...@@ -6013,7 +6013,8 @@ JUP::JUP(PGLOBAL g) {
fs = NULL; fs = NULL;
s = buff = NULL; s = buff = NULL;
len = 0; len = 0;
i = k = recl = 0; k = recl = 0;
i = 0;
} // end of JUP constructor } // end of JUP constructor
/*********************************************************************************/ /*********************************************************************************/
......
...@@ -364,7 +364,7 @@ class JUP : public BLOCK { ...@@ -364,7 +364,7 @@ class JUP : public BLOCK {
char *s; char *s;
char *buff; char *buff;
size_t len; size_t len;
int recl; uint i;
int i, k; int k, recl;
}; // end of class JUP }; // end of class JUP
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