Skip to content

Commit

Permalink
(fix) change to 'NO_LOCK'
Browse files Browse the repository at this point in the history
  • Loading branch information
CMGeldenhuys committed Aug 12, 2021
1 parent 172e345 commit 36cdb23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Src/wave.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ int WAVE_createHeader_ (WAVE_t *wav)
WAVE_info_subchunk_t *iLocation_subchunk = &LIST_chunk->subChunks[WAVE_INFO_IDX_LOCATION];
iLocation_subchunk->SubchunkID = WAVE_INFO_TAG_LOCATION;
iLocation_subchunk->SubchunkSize = WAVE_SIZEOF_SUBCHUNK(WAVE_info_subchunk_t);
strncpy(iLocation_subchunk->Value, "NO LOCK", WAVE_MAX_INFO_VALUE_LEN);
strncpy(iLocation_subchunk->Value, "NO_LOCK", WAVE_MAX_INFO_VALUE_LEN);
DBUG("iLocation_subchunk->SubchunkSize: %u", iLocation_subchunk->SubchunkSize);

#ifdef DEBUG
Expand Down

0 comments on commit 36cdb23

Please sign in to comment.