From: Simo Sorce Date: Sun, 29 Jan 2006 18:43:52 +0000 (+0000) Subject: r13224: better to cast the return too X-Git-Tag: samba-4.0.0alpha6~801^2~9226 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=99fc191d5142ea2d6bcab9beb504d5e90b61742f;p=samba.git r13224: better to cast the return too (This used to be commit c068df483f44a23ad813acd10d583be863128382) --- diff --git a/source3/modules/vfs_recycle.c b/source3/modules/vfs_recycle.c index 188c50be3e5..7b2b15171e4 100644 --- a/source3/modules/vfs_recycle.c +++ b/source3/modules/vfs_recycle.c @@ -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)