summaryrefslogtreecommitdiffstats
path: root/source/smbd/vfs-wrap.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>1999-04-05 23:35:50 +0000
committerTim Potter <tpot@samba.org>1999-04-05 23:35:50 +0000
commite15da6882426edd39ff7fdcd47f1be30c053d4ec (patch)
tree343eec3fb2d62180f65385a32a53c9494c7d4482 /source/smbd/vfs-wrap.c
parentabf31ca66f3dab1b8bd7772f83e736e41afb4b1e (diff)
downloadsamba-e15da6882426edd39ff7fdcd47f1be30c053d4ec.tar.gz
samba-e15da6882426edd39ff7fdcd47f1be30c053d4ec.tar.xz
samba-e15da6882426edd39ff7fdcd47f1be30c053d4ec.zip
Under IRIX, a void function may return a value, even if that value is
void!
Diffstat (limited to 'source/smbd/vfs-wrap.c')
-rw-r--r--source/smbd/vfs-wrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/vfs-wrap.c b/source/smbd/vfs-wrap.c
index b8325dd1e76..b3d1a35329b 100644
--- a/source/smbd/vfs-wrap.c
+++ b/source/smbd/vfs-wrap.c
@@ -118,7 +118,7 @@ int vfswrap_rename(char *old, char *new)
void vfswrap_sync_file(struct connection_struct *conn, files_struct *fsp)
{
- return sys_sync_file(conn, fsp);
+ sys_sync_file(conn, fsp);
}
int vfswrap_stat(char *fname, SMB_STRUCT_STAT *sbuf)