Fix implicit switch case cast

This commit is contained in:
Rémi Denis-Courmont 2010-07-17 21:50:22 +03:00
parent 0c6062ece8
commit 749860b6bf
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ static bool IsRemote (int fd)
if (fstatfs (fd, &stf))
return false;
switch (stf.f_type)
switch ((unsigned long)stf.f_type)
{
case AFS_SUPER_MAGIC:
case CODA_SUPER_MAGIC: