Skip to content

Commit

Permalink
RIFFChunkId was generating TLS calls
Browse files Browse the repository at this point in the history
  • Loading branch information
MrcSnm committed Feb 28, 2023
1 parent af7d490 commit 24f4e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/audioformats/io.d
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ struct IOCallbacks
template RIFFChunkId(string id)
{
static assert(id.length == 4);
uint RIFFChunkId = (cast(ubyte)(id[0]) << 24)
__gshared uint RIFFChunkId = (cast(ubyte)(id[0]) << 24)
| (cast(ubyte)(id[1]) << 16)
| (cast(ubyte)(id[2]) << 8)
| (cast(ubyte)(id[3]));
Expand Down

0 comments on commit 24f4e54

Please sign in to comment.