From b08c13ed4e0f6e097002e476afea5c75e960efc2 Mon Sep 17 00:00:00 2001 From: gir489 Date: Mon, 5 Feb 2018 17:05:26 -0500 Subject: [PATCH] Changed "sig found at" address casing to match that of the IDA Text View window. --- SigMaker/Search.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SigMaker/Search.cpp b/SigMaker/Search.cpp index 443dc94..28c5df2 100644 --- a/SigMaker/Search.cpp +++ b/SigMaker/Search.cpp @@ -56,9 +56,9 @@ void SearchForSigs( const qstring& strSig ) do { #ifdef __X64__ - msg("sig found at 1%x\n", dwAddress); + msg("sig found at 1%X\n", dwAddress); #else - msg("sig found at %x\n", dwAddress); + msg("sig found at %X\n", dwAddress); #endif dwAddress = find_binary( dwAddress + 1, inf.max_ea, strSig.c_str( ), 16, SEARCH_DOWN ); } while (IsValidEA( dwAddress )); @@ -72,9 +72,9 @@ void SearchForSigs( const qstring& strSig ) do { #ifdef __X64__ - msg( "sig found at 1%x\n", dwAddress ); + msg( "sig found at 1%X\n", dwAddress ); #else - msg("sig found at %x\n", dwAddress); + msg("sig found at %X\n", dwAddress); #endif dwAddress = find_binary( dwAddress + 1, inf.omax_ea, strSig.c_str( ), 16, SEARCH_DOWN ); } while (IsValidEA( dwAddress ));