1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r13224: better to cast the return too

This commit is contained in:
Simo Sorce 2006-01-29 18:43:52 +00:00 committed by Gerald (Jerry) Carter
parent 6c15af31bc
commit c068df483f

View File

@ -178,7 +178,7 @@ static mode_t recycle_directory_mode(vfs_handle_struct *handle)
}
DEBUG(10, ("recycle: directory_mode = %o\n", dirmode));
return dirmode;
return (mode_t)dirmode;
}
static BOOL recycle_directory_exist(vfs_handle_struct *handle, const char *dname)