mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +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:
parent
2c63cbebbc
commit
0dbb29fa23
1 changed files with 1 additions and 1 deletions
|
@ -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';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue