Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
f8983ea4
Commit
f8983ea4
authored
Mar 02, 2021
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xactengine3_7: Add a trailing linefeed to ERR() messages.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0fd41648
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
xact_dll.c
dlls/xactengine3_7/xact_dll.c
+7
-7
No files found.
dlls/xactengine3_7/xact_dll.c
View file @
f8983ea4
...
...
@@ -253,7 +253,7 @@ static HRESULT WINAPI IXACT3SoundBankImpl_Prepare(IXACT3SoundBank *iface,
if
(
!
cue
)
{
FACTCue_Destroy
(
fcue
);
ERR
(
"Failed to allocate XACT3CueImpl!"
);
ERR
(
"Failed to allocate XACT3CueImpl!
\n
"
);
return
E_OUTOFMEMORY
;
}
...
...
@@ -295,7 +295,7 @@ static HRESULT WINAPI IXACT3SoundBankImpl_Play(IXACT3SoundBank *iface,
if
(
!
cue
)
{
FACTCue_Destroy
(
fcue
);
ERR
(
"Failed to allocate XACT3CueImpl!"
);
ERR
(
"Failed to allocate XACT3CueImpl!
\n
"
);
return
E_OUTOFMEMORY
;
}
...
...
@@ -543,7 +543,7 @@ static HRESULT WINAPI IXACT3WaveBankImpl_Prepare(IXACT3WaveBank *iface,
if
(
!
wave
)
{
FACTWave_Destroy
(
fwave
);
ERR
(
"Failed to allocate XACT3WaveImpl!"
);
ERR
(
"Failed to allocate XACT3WaveImpl!
\n
"
);
return
E_OUTOFMEMORY
;
}
...
...
@@ -585,7 +585,7 @@ static HRESULT WINAPI IXACT3WaveBankImpl_Play(IXACT3WaveBank *iface,
if
(
!
wave
)
{
FACTWave_Destroy
(
fwave
);
ERR
(
"Failed to allocate XACT3WaveImpl!"
);
ERR
(
"Failed to allocate XACT3WaveImpl!
\n
"
);
return
E_OUTOFMEMORY
;
}
...
...
@@ -870,7 +870,7 @@ static HRESULT WINAPI IXACT3EngineImpl_CreateSoundBank(IXACT3Engine *iface,
if
(
!
sb
)
{
FACTSoundBank_Destroy
(
fsb
);
ERR
(
"Failed to allocate XACT3SoundBankImpl!"
);
ERR
(
"Failed to allocate XACT3SoundBankImpl!
\n
"
);
return
E_OUTOFMEMORY
;
}
...
...
@@ -907,7 +907,7 @@ static HRESULT WINAPI IXACT3EngineImpl_CreateInMemoryWaveBank(IXACT3Engine *ifac
if
(
!
wb
)
{
FACTWaveBank_Destroy
(
fwb
);
ERR
(
"Failed to allocate XACT3WaveBankImpl!"
);
ERR
(
"Failed to allocate XACT3WaveBankImpl!
\n
"
);
return
E_OUTOFMEMORY
;
}
...
...
@@ -955,7 +955,7 @@ static HRESULT WINAPI IXACT3EngineImpl_CreateStreamingWaveBank(IXACT3Engine *ifa
if
(
!
wb
)
{
FACTWaveBank_Destroy
(
fwb
);
ERR
(
"Failed to allocate XACT3WaveBankImpl!"
);
ERR
(
"Failed to allocate XACT3WaveBankImpl!
\n
"
);
return
E_OUTOFMEMORY
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment