From 77f5d2e0f13230e1d4c38d686d959e05f9d99605 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 26 Feb 2005 14:38:30 +0000 Subject: [PATCH] PFX is not defined here. --- src/common/compression.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/compression.cpp b/src/common/compression.cpp index d9819c702..f53882e26 100644 --- a/src/common/compression.cpp +++ b/src/common/compression.cpp @@ -426,7 +426,7 @@ content_decoder_c::initialize(KaxTrackEntry &ktentry) { if (0 == enc.comp_algo) { #if !defined(HAVE_ZLIB_H) - mxwarn(PFX "Track %d was compressed with zlib but mkvmerge has not " + mxwarn("Track %d was compressed with zlib but mkvmerge has not " "been compiled with support for zlib compression.\n", tid); ok = false; break; @@ -436,7 +436,7 @@ content_decoder_c::initialize(KaxTrackEntry &ktentry) { #endif } else if (1 == enc.comp_algo) { #if !defined(HAVE_BZLIB_H) - mxwarn(PFX "Track %d was compressed with bzlib but mkvmerge has not " + mxwarn("Track %d was compressed with bzlib but mkvmerge has not " "been compiled with support for bzlib compression.\n", tid); ok = false; break; @@ -446,7 +446,7 @@ content_decoder_c::initialize(KaxTrackEntry &ktentry) { #endif } else if (enc.comp_algo == 2) { #if !defined(HAVE_LZO1X_H) - mxwarn(PFX "Track %d was compressed with lzo1x but mkvmerge has not " + mxwarn("Track %d was compressed with lzo1x but mkvmerge has not " "been compiled with support for lzo1x compression.\n", tid); ok = false; break;