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

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/apps/mplayerc/Mpeg2SectionData.cpp')
-rw-r--r--src/apps/mplayerc/Mpeg2SectionData.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/apps/mplayerc/Mpeg2SectionData.cpp b/src/apps/mplayerc/Mpeg2SectionData.cpp
index b58ba1990..9460cd87f 100644
--- a/src/apps/mplayerc/Mpeg2SectionData.cpp
+++ b/src/apps/mplayerc/Mpeg2SectionData.cpp
@@ -38,7 +38,8 @@
#define SkipDescriptor(gb, nType, nLength) \
gb.ReadBuffer(DescBuffer, nLength); \
- TRACE ("Skipped descriptor : 0x%02x\n", nType);
+ TRACE ("Skipped descriptor : 0x%02x\n", nType); \
+ UNREFERENCED_PARAMETER(nType);
#define EndEnumDescriptors }}