Commit 46ca9c2
committed
Fix package priority index in pg_dump_sort
The priority table mistakenly indexed the package entry with
PRIO_PACKAGE instead of DO_PACKAGE key. Under Clang, that collides with
another designated initializer and overwrites a later entry.
Warning excerpt:
```
pg_dump_sort.c:117:23: warning: initializer overrides prior
initialization of this subobject [-Winitializer-overrides]
```1 parent 0da228b commit 46ca9c2
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
| |||
0 commit comments