1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

- Remove a signed/unsigned warning.

modified:
  storage/connect/jsonudf.cpp
This commit is contained in:
Olivier Bertrand
2015-03-01 19:29:56 +01:00
parent 5c8862ee19
commit 34c89597ef

View File

@@ -232,7 +232,7 @@ static PSZ MakeKey(PGLOBAL g, UDF_ARGS *args, int i)
/***********************************************************************/
static PJVAL MakeValue(PGLOBAL g, UDF_ARGS *args, int i)
{
char *sap = (args->arg_count > i) ? args->args[i] : NULL;
char *sap = (args->arg_count > (unsigned)i) ? args->args[i] : NULL;
PJSON jsp;
PJVAL jvp = new(g) JVALUE;