small fix to OskitDumpBuffer() - each line should display the address of it's first byte, not the address of the beginning of the dump...

svn path=/trunk/; revision=10998
This commit is contained in:
Royce Mitchell III 2004-09-23 12:43:49 +00:00
parent 2c63cbebbc
commit 0dbb29fa23

View file

@ -92,7 +92,7 @@ void OskitDumpBuffer( OSK_PCHAR Data, OSK_UINT Len )
if ( !align )
{
if ( i ) DbgPrint( line );
snprintf ( line, sizeof(line)-1, "%08x: \n", Data );
snprintf ( line, sizeof(line)-1, "%08x: \n", &Data[i] );
line[sizeof(line)-1] = '\0';
}