fixed differences in signedness warnings

svn path=/trunk/; revision=17184
This commit is contained in:
Thomas Bluemel 2005-08-07 23:05:57 +00:00
parent 5905ef7a1e
commit 73a4ae89a5

View file

@ -293,10 +293,10 @@ AtapiScsiSrbToAtapi (PSCSI_REQUEST_BLOCK Srb);
// ---------------------------------------------------------------- Inlines
void
IDESwapBytePairs(char *Buf,
IDESwapBytePairs(UCHAR *Buf,
int Cnt)
{
char t;
UCHAR t;
int i;
for (i = 0; i < Cnt; i += 2)