From: Heikki Linnakangas Date: Mon, 18 Oct 2021 14:02:01 +0000 (+0300) Subject: Fix duplicate typedef LogicalTape. X-Git-Url: http://git.postgresql.org/gitweb/-?a=commitdiff_plain;h=aa3ac6453b28049b3198433b75228271b7612d4a;p=users%2Frhaas%2Fpostgres.git Fix duplicate typedef LogicalTape. To make buildfarm member locust happy. --- diff --git a/src/backend/utils/sort/logtape.c b/src/backend/utils/sort/logtape.c index 6d7f862fb5..48baccd6a2 100644 --- a/src/backend/utils/sort/logtape.c +++ b/src/backend/utils/sort/logtape.c @@ -134,7 +134,7 @@ typedef struct TapeBlockTrailer * buffer. The buffer therefore contains one large contiguous chunk of data * from the tape. */ -typedef struct LogicalTape +struct LogicalTape { LogicalTapeSet *tapeSet; /* tape set this tape is part of */ @@ -175,7 +175,7 @@ typedef struct LogicalTape long *prealloc; int nprealloc; /* number of elements in list */ int prealloc_size; /* number of elements list can hold */ -} LogicalTape; +}; /* * This data structure represents a set of related "logical tapes" sharing