Commit 89859338 authored by Olivier Bertrand's avatar Olivier Bertrand

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

parent fb86a496
...@@ -1833,7 +1833,7 @@ int BINFAM::ReadBuffer(PGLOBAL g) { ...@@ -1833,7 +1833,7 @@ int BINFAM::ReadBuffer(PGLOBAL g) {
} else } else
return RC_EF; return RC_EF;
} else if (Recsize > Buflen) { } else if (Recsize > (unsigned)Buflen) {
sprintf(g->Message, "Record too big (Recsize=%zd Buflen=%d)\n", Recsize, Buflen); sprintf(g->Message, "Record too big (Recsize=%zd Buflen=%d)\n", Recsize, Buflen);
return RC_FX; return RC_FX;
} // endif Recsize } // endif Recsize
......
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