Commit 7b2e7dd2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix implicit switch case cast

(cherry picked from commit 749860b6bf52df7418f25a820fc14f54a08ffb32)
parent 719633a3
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment