Module: wine Branch: master Commit: 290cd163580a3c43f1b775200e69bea22234593c URL: http://source.winehq.org/git/wine.git/?a=commit;h=290cd163580a3c43f1b775200e...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Wed Jan 8 03:37:52 2014 +0100
mountmgr.sys: Use BOOL type where appropriate.
---
dlls/mountmgr.sys/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mountmgr.sys/device.c b/dlls/mountmgr.sys/device.c index 005ec5e..028c17f 100644 --- a/dlls/mountmgr.sys/device.c +++ b/dlls/mountmgr.sys/device.c @@ -534,7 +534,7 @@ static void set_drive_info( struct dos_drive *drive, int letter, struct volume * } }
-static inline int is_valid_device( struct stat *st ) +static inline BOOL is_valid_device( struct stat *st ) { #if defined(linux) || defined(__sun__) return S_ISBLK( st->st_mode );