Skip to content

Commit aa3ac64

Browse files
committed
Fix duplicate typedef LogicalTape.
To make buildfarm member locust happy.
1 parent 0bd65a3 commit aa3ac64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/sort/logtape.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ typedef struct TapeBlockTrailer
134134
* buffer. The buffer therefore contains one large contiguous chunk of data
135135
* from the tape.
136136
*/
137-
typedef struct LogicalTape
137+
struct LogicalTape
138138
{
139139
LogicalTapeSet *tapeSet; /* tape set this tape is part of */
140140

@@ -175,7 +175,7 @@ typedef struct LogicalTape
175175
long *prealloc;
176176
int nprealloc; /* number of elements in list */
177177
int prealloc_size; /* number of elements list can hold */
178-
} LogicalTape;
178+
};
179179

180180
/*
181181
* This data structure represents a set of related "logical tapes" sharing

0 commit comments

Comments
 (0)