Changed "sig found at" address casing to match that of the IDA Text View window.
This commit is contained in:
@@ -56,9 +56,9 @@ void SearchForSigs( const qstring& strSig )
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
#ifdef __X64__
|
#ifdef __X64__
|
||||||
msg("sig found at 1%x\n", dwAddress);
|
msg("sig found at 1%X\n", dwAddress);
|
||||||
#else
|
#else
|
||||||
msg("sig found at %x\n", dwAddress);
|
msg("sig found at %X\n", dwAddress);
|
||||||
#endif
|
#endif
|
||||||
dwAddress = find_binary( dwAddress + 1, inf.max_ea, strSig.c_str( ), 16, SEARCH_DOWN );
|
dwAddress = find_binary( dwAddress + 1, inf.max_ea, strSig.c_str( ), 16, SEARCH_DOWN );
|
||||||
} while (IsValidEA( dwAddress ));
|
} while (IsValidEA( dwAddress ));
|
||||||
@@ -72,9 +72,9 @@ void SearchForSigs( const qstring& strSig )
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
#ifdef __X64__
|
#ifdef __X64__
|
||||||
msg( "sig found at 1%x\n", dwAddress );
|
msg( "sig found at 1%X\n", dwAddress );
|
||||||
#else
|
#else
|
||||||
msg("sig found at %x\n", dwAddress);
|
msg("sig found at %X\n", dwAddress);
|
||||||
#endif
|
#endif
|
||||||
dwAddress = find_binary( dwAddress + 1, inf.omax_ea, strSig.c_str( ), 16, SEARCH_DOWN );
|
dwAddress = find_binary( dwAddress + 1, inf.omax_ea, strSig.c_str( ), 16, SEARCH_DOWN );
|
||||||
} while (IsValidEA( dwAddress ));
|
} while (IsValidEA( dwAddress ));
|
||||||
|
|||||||
Reference in New Issue
Block a user