Skip to content

Commit a0fac50

Browse files
committed
fix warning on pg 13
1 parent ff1cccf commit a0fac50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/check_expr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ check_pure_expr(PLpgSQL_checkstate *cstate, Query *query, char *query_str)
443443
"there is a possibility of unwanted behave",
444444
"Maybe you forgot to use a semicolon.",
445445
PLPGSQL_CHECK_WARNING_EXTRA,
446-
exprLocation(query->targetList), query_str, NULL);
446+
exprLocation((Node *) query->targetList), query_str, NULL);
447447
}
448448
}
449449

0 commit comments

Comments
 (0)