fixed difference in signedness warnings and a uninitialized variable warning

svn path=/trunk/; revision=20912
This commit is contained in:
Thomas Bluemel 2006-01-16 16:29:02 +00:00
parent da4ac0b789
commit a66e25af32
3 changed files with 3 additions and 3 deletions

View file

@ -295,7 +295,7 @@ HalInitializeDisplay (PLOADER_PARAMETER_BLOCK LoaderBlock)
ULONG ScreenHeightPixels;
PHYSICAL_ADDRESS PhysControl;
PHYSICAL_ADDRESS PhysBuffer;
ULONG AvMode;
ULONG AvMode = 0;
PVOID ControlBuffer;
if (! DisplayInitialized)

View file

@ -16,7 +16,7 @@
#define NDEBUG
#include <debug.h>
CHAR XboxFont8x16[256 * 16] =
UCHAR XboxFont8x16[256 * 16] =
{
0x00,0x00,0x00,0x7c,0xc6,0xc6,0xde,0xde,0xde,0xdc,0xc0,0x7c,0x00,0x00,0x00,0x00, /* 0x00 */
0x00,0x00,0x7e,0x81,0xa5,0x81,0x81,0xa5,0x99,0x81,0x81,0x7e,0x00,0x00,0x00,0x00, /* 0x01 */

View file

@ -15,7 +15,7 @@
#include <hal.h>
#include <ntdddisk.h>
extern CHAR XboxFont8x16[256 * 16];
extern UCHAR XboxFont8x16[256 * 16];
void HalpXboxInitPciBus(ULONG BusNumber, PBUS_HANDLER BusHandler);
void HalpXboxInitPartIo(void);