Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7a8a5ad

Browse files
committedMar 15, 2025
atest: Change .wav data size to be unsigned 32bit int
This allows .wav files bigger than 2GiB.
1 parent 390d4a8 commit 7a8a5ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/atest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ static struct {
134134

135135
static struct {
136136
char data[4]; /* "data" */
137-
int datasize;
137+
u_int32_t datasize;
138138
} wav_data;
139139

140140

0 commit comments

Comments
 (0)
Please sign in to comment.