Skip to content

Commit

Permalink
Fix LLDB ARM build error on ubuntu precise with gcc4.7
Browse files Browse the repository at this point in the history
Differential revision: http://reviews.llvm.org/D9100

llvm-svn: 235865
  • Loading branch information
omjavaid committed Apr 27, 2015
1 parent 97d6672 commit a77ca51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/source/Host/posix/FileSystem.cpp
Expand Up @@ -184,7 +184,7 @@ static bool IsLocal(const struct statfs& info)
{
#ifdef __linux__
#define CIFS_MAGIC_NUMBER 0xFF534D42
switch (info.f_type)
switch ((uint32_t)info.f_type)
{
case NFS_SUPER_MAGIC:
case SMB_SUPER_MAGIC:
Expand Down

0 comments on commit a77ca51

Please sign in to comment.