Skip to content

Commit 34c8959

Browse files
committed
- Remove a signed/unsigned warning.
modified: storage/connect/jsonudf.cpp
1 parent 5c8862e commit 34c8959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/connect/jsonudf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ static PSZ MakeKey(PGLOBAL g, UDF_ARGS *args, int i)
232232
/***********************************************************************/
233233
static PJVAL MakeValue(PGLOBAL g, UDF_ARGS *args, int i)
234234
{
235-
char *sap = (args->arg_count > i) ? args->args[i] : NULL;
235+
char *sap = (args->arg_count > (unsigned)i) ? args->args[i] : NULL;
236236
PJSON jsp;
237237
PJVAL jvp = new(g) JVALUE;
238238

0 commit comments

Comments
 (0)