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