mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:35:43 +00:00
[NTOSKRNL]
- Reset KdbNumberOfRowsPrinted and KdbNumberOfColsPrinted before reading new command in kernel debugger so if previous command printed nearly full page, new command won't show "Press q to abort" message before processing svn path=/trunk/; revision=52064
This commit is contained in:
parent
12f49ac10e
commit
33a2b85a57
1 changed files with 3 additions and 0 deletions
|
@ -2701,6 +2701,9 @@ KdbpCliMainLoop(
|
|||
/* Main loop */
|
||||
do
|
||||
{
|
||||
/* Reset the number of rows/cols printed */
|
||||
KdbNumberOfRowsPrinted = KdbNumberOfColsPrinted = 0;
|
||||
|
||||
/* Print the prompt */
|
||||
KdbpPrint("kdb:> ");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue