mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NTVDM]: Fix space padding calculation in the text-mode hex dumper.
svn path=/trunk/; revision=70974
This commit is contained in:
parent
73f123b287
commit
5d8398fc61
1 changed files with 2 additions and 2 deletions
|
@ -345,8 +345,8 @@ DumpMemoryTxt(HANDLE hFile)
|
|||
}
|
||||
|
||||
/* ... align with spaces if needed... */
|
||||
RtlFillMemory(Line, 0x0F + 4 - i, ' ');
|
||||
Line += 0x0F + 4 - i;
|
||||
RtlFillMemory(Line, (0x0F + 2 - i) * 3 + 2, ' ');
|
||||
Line += (0x0F + 2 - i) * 3 + 2;
|
||||
|
||||
/* ... then in character form. */
|
||||
i = 0;
|
||||
|
|
Loading…
Reference in a new issue