summaryrefslogtreecommitdiffstats
path: root/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'main.cc')
-rw-r--r--main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.cc b/main.cc
index 828ac06..eba364b 100644
--- a/main.cc
+++ b/main.cc
@@ -551,8 +551,8 @@ int print_magic_type( const std::string & magic_type )
{
std::string data;
- if( magic_type == "gzip" ) std::printf( "\x1F\x8B" );
- else if( magic_type == "bzip2" ) std::printf( "BZh" );
+ if( magic_type == "bzip2" ) std::printf( "BZh" );
+ else if( magic_type == "gzip" ) std::printf( "\x1F\x8B" );
else if( magic_type == "lzip" ) std::printf( "LZIP" );
else if( magic_type == "xz" ) std::printf( "%c7zXZ", '\xFD' );
else if( hex_to_data( magic_type, data ) ) std::printf( data.c_str() );