Fix duplicate typedef LogicalTape.

To make buildfarm member locust happy.
This commit is contained in:
Heikki Linnakangas 2021-10-18 17:02:01 +03:00
parent 0bd65a3905
commit aa3ac6453b

View File

@ -134,7 +134,7 @@ typedef struct TapeBlockTrailer
* buffer. The buffer therefore contains one large contiguous chunk of data * buffer. The buffer therefore contains one large contiguous chunk of data
* from the tape. * from the tape.
*/ */
typedef struct LogicalTape struct LogicalTape
{ {
LogicalTapeSet *tapeSet; /* tape set this tape is part of */ LogicalTapeSet *tapeSet; /* tape set this tape is part of */
@ -175,7 +175,7 @@ typedef struct LogicalTape
long *prealloc; long *prealloc;
int nprealloc; /* number of elements in list */ int nprealloc; /* number of elements in list */
int prealloc_size; /* number of elements list can hold */ int prealloc_size; /* number of elements list can hold */
} LogicalTape; };
/* /*
* This data structure represents a set of related "logical tapes" sharing * This data structure represents a set of related "logical tapes" sharing