mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: fix stat mode signedness warning
This commit is contained in:
parent
27f6b2dd73
commit
5a8c3daba3
@ -48,7 +48,7 @@ struct FileInfo {
|
||||
|
||||
struct C.stat {
|
||||
st_size int
|
||||
st_mode int
|
||||
st_mode u32
|
||||
st_mtime int
|
||||
}
|
||||
|
||||
@ -794,7 +794,7 @@ pub fn is_dir(path string) bool {
|
||||
return false
|
||||
}
|
||||
// ref: https://code.woboq.org/gcc/include/sys/stat.h.html
|
||||
return (statbuf.st_mode & S_IFMT) == S_IFDIR
|
||||
return (int(statbuf.st_mode) & S_IFMT) == S_IFDIR
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user