Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/audio-riff-wav-formats.adb
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,8 @@ package body Audio.RIFF.Wav.Formats is
Item : out Channel_Configuration)
is
V : Channel_Configuration_Integer;
X : Channel_Configuration;
for X'Address use V'Address;
X : Channel_Configuration with
Address => V'Address;
begin
Channel_Configuration_Integer'Read (Stream, V);
Item := X;
Expand All @@ -383,8 +383,8 @@ package body Audio.RIFF.Wav.Formats is
Item : Channel_Configuration)
is
V : Channel_Configuration_Integer;
X : Channel_Configuration;
for X'Address use V'Address;
X : Channel_Configuration with
Address => V'Address;
begin
X := Item;
Channel_Configuration_Integer'Write (Stream, V);
Expand Down