Skip to content

Commit a0e22ef

Browse files
Fix inconsistent function prototypes with function definitions.
Introduced by 30e1442. Reviewed-by: John Naylor Discussion: https://postgr.es/m/CAD21AoCaDT%2B-ZaVjbtvumms0tyyHPNLELK2UX-MLG9XCgioaNw%40mail.gmail.com
1 parent 4edb37e commit a0e22ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/access/tidstore.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ typedef struct TidStoreIterResult
2929
OffsetNumber *offsets;
3030
} TidStoreIterResult;
3131

32-
extern TidStore *TidStoreCreate(size_t max_bytes, dsa_area *dsa,
32+
extern TidStore *TidStoreCreate(size_t max_bytes, dsa_area *area,
3333
int tranche_id);
34-
extern TidStore *TidStoreAttach(dsa_area *dsa, dsa_pointer rt_dp);
34+
extern TidStore *TidStoreAttach(dsa_area *area, dsa_pointer handle);
3535
extern void TidStoreDetach(TidStore *ts);
3636
extern void TidStoreLockExclusive(TidStore *ts);
3737
extern void TidStoreLockShare(TidStore *ts);

0 commit comments

Comments
 (0)