mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +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
|
||||
|
||||
void
|
||||
IDESwapBytePairs(char *Buf,
|
||||
IDESwapBytePairs(UCHAR *Buf,
|
||||
int Cnt)
|
||||
{
|
||||
char t;
|
||||
UCHAR t;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < Cnt; i += 2)
|
||||
|
|
Loading…
Reference in a new issue