projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f64b823
)
[HAL]
author
Thomas Faber
<thomas.faber@reactos.org>
Fri, 19 May 2017 21:37:50 +0000
(21:37 +0000)
committer
Thomas Faber
<thomas.faber@reactos.org>
Fri, 19 May 2017 21:37:50 +0000
(21:37 +0000)
- Fix a broken DPRINT
svn path=/trunk/; revision=74603
reactos/hal/halx86/generic/bios.c
patch
|
blob
|
history
diff --git
a/reactos/hal/halx86/generic/bios.c
b/reactos/hal/halx86/generic/bios.c
index
3887222
..
70ee760
100644
(file)
--- a/
reactos/hal/halx86/generic/bios.c
+++ b/
reactos/hal/halx86/generic/bios.c
@@
-63,8
+63,8
@@
HalpOpcodeInvalid(IN PHAL_BIOS_FRAME BiosFrame)
PUCHAR Inst = (PUCHAR)(BiosFrame->CsBase + BiosFrame->Eip);
/* Print error message */
- DPRINT1("HAL: An invalid V86 opcode was encountered at address %X:%X\n"
,
- "Opcode: %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X",
+ DPRINT1("HAL: An invalid V86 opcode was encountered at address %X:%X\n"
+ "Opcode: %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X
\n
",
BiosFrame->SegCs, BiosFrame->Eip,
Inst[0], Inst[1], Inst[2], Inst[3], Inst[4],
Inst[5], Inst[6], Inst[7], Inst[8], Inst[9]);