mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
fixed differences in signedness warnings
svn path=/trunk/; revision=17184
This commit is contained in:
parent
5905ef7a1e
commit
73a4ae89a5
1 changed files with 2 additions and 2 deletions
|
@ -293,10 +293,10 @@ AtapiScsiSrbToAtapi (PSCSI_REQUEST_BLOCK Srb);
|
||||||
// ---------------------------------------------------------------- Inlines
|
// ---------------------------------------------------------------- Inlines
|
||||||
|
|
||||||
void
|
void
|
||||||
IDESwapBytePairs(char *Buf,
|
IDESwapBytePairs(UCHAR *Buf,
|
||||||
int Cnt)
|
int Cnt)
|
||||||
{
|
{
|
||||||
char t;
|
UCHAR t;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < Cnt; i += 2)
|
for (i = 0; i < Cnt; i += 2)
|
||||||
|
|
Loading…
Reference in a new issue