浏览代码

Add missing newline in debug output

Looked ugly.
Vincent Lang 9 年之前
父节点
当前提交
9968f32688
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/player/PlayerComponent.cpp

+ 1 - 1
src/player/PlayerComponent.cpp

@@ -838,7 +838,7 @@ QString PlayerComponent::videoInformation() const
   QString audio_format = MPV_PROPERTY("audio-out-params/format");
   if (audio_format.startsWith("spdif-"))
   {
-    info << "Channels (output): passthrough (" << audio_format << ")";
+    info << "Channels (output): passthrough (" << audio_format << ")" << endl;
   }
   else
   {