Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Utils.h')
-rw-r--r--src/Utils.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Utils.h b/src/Utils.h
index cd38e68..de2aaa5 100644
--- a/src/Utils.h
+++ b/src/Utils.h
@@ -141,8 +141,7 @@ namespace SaneAudioRenderer
try
{
std::wostringstream stream;
- DebugOutForward(stream, std::forward<T>(args)...);
- stream << "\n";
+ DebugOutForward(stream, std::forward<T>(args)..., "\n");
OutputDebugString(stream.str().c_str());
}
catch (...)