mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
fixed compiling errors with gcc 3.4.x
svn path=/trunk/; revision=10311
This commit is contained in:
parent
a8c60b138d
commit
7d74fb9d99
1 changed files with 2 additions and 2 deletions
|
@ -118,7 +118,7 @@ MiniDisplayPacket2(
|
|||
if (i % 16 == 0)
|
||||
DbgPrint("\n%04X ", i);
|
||||
DbgPrint("%02X ", *p);
|
||||
(ULONG_PTR)p += 1;
|
||||
*(ULONG_PTR*)p += 1;
|
||||
}
|
||||
|
||||
DbgPrint("\nFRAME:");
|
||||
|
@ -129,7 +129,7 @@ MiniDisplayPacket2(
|
|||
if (i % 16 == 0)
|
||||
DbgPrint("\n%04X ", i);
|
||||
DbgPrint("%02X ", *p);
|
||||
(ULONG_PTR)p += 1;
|
||||
*(ULONG_PTR*)p += 1;
|
||||
}
|
||||
|
||||
DbgPrint("\n*** RECEIVE PACKET STOP ***\n");
|
||||
|
|
Loading…
Reference in a new issue