From dace6087d66fa1fa012c1dfdd2590fc197cc61d5 Mon Sep 17 00:00:00 2001
From: David Marcec <dmarcecguzman@gmail.com>
Date: Mon, 26 Nov 2018 21:52:10 +1100
Subject: [PATCH] Fixed hwopus compile error

---
 src/core/hle/service/audio/hwopus.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp
index 5e3672dbd..a850cadc8 100644
--- a/src/core/hle/service/audio/hwopus.cpp
+++ b/src/core/hle/service/audio/hwopus.cpp
@@ -124,7 +124,7 @@ private:
             LOG_ERROR(Audio,
                       "Incorrect sample count received from opus_decode, "
                       "output_sample_count={}, frame_size={}, data_sz_from_hdr={}",
-                      out_sample_count, frame_size, hdr.sz);
+                      out_sample_count, frame_size, static_cast<u32>(hdr.sz));
             return false;
         }
         const auto end_time = std::chrono::high_resolution_clock::now() - start_time;