Skip to content

Commit 327db8f

Browse files
committed
Fix build in VC (C99 not supported).
1 parent aa296c2 commit 327db8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sr_plan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ sr_plan_invalid_table(PG_FUNCTION_ARGS)
378378

379379
if (!dropped_objects_func)
380380
{
381-
Oid args[0] = {};
381+
Oid args[1];
382382
dropped_objects_func = LookupFuncName(list_make1(makeString("pg_event_trigger_dropped_objects")), 0, args, true);
383383
}
384384

0 commit comments

Comments
 (0)