Skip to content

Commit b5005ff

Browse files
committed
Back-patch 9.4-era compiler warning fixes into older branches.
Back-patch commit 4e18236 (another thing that longfin's version of clang doesn't like).
1 parent e9e2bde commit b5005ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pl/plperl/plperl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1787,7 +1787,7 @@ plperl_inline_handler(PG_FUNCTION_ARGS)
17871787
/* Set up a callback for error reporting */
17881788
pl_error_context.callback = plperl_inline_callback;
17891789
pl_error_context.previous = error_context_stack;
1790-
pl_error_context.arg = (Datum) 0;
1790+
pl_error_context.arg = NULL;
17911791
error_context_stack = &pl_error_context;
17921792

17931793
/*

0 commit comments

Comments
 (0)