Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: wb2osz/direwolf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7a8a5adc1536d2428abfc276972f2634df8bd4ca
Choose a base ref
...
head repository: wb2osz/direwolf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8ed39a0051840f575e72c04699acd388d138bded
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 15, 2025

  1. atest: Change .wav data size to be unsigned 32bit int

    This allows .wav files bigger than 2GiB.
    ThomasHabets committed Mar 15, 2025
    Copy the full SHA
    8ed39a0 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/atest.c
2 changes: 1 addition & 1 deletion src/atest.c
Original file line number Diff line number Diff line change
@@ -134,7 +134,7 @@ static struct {

static struct {
char data[4]; /* "data" */
int datasize;
uint32_t datasize;
} wav_data;