mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 04:13:35 +00:00
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:
@@ -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';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user