diff options
author | Tim Potter <tpot@samba.org> | 1999-04-05 23:35:50 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 1999-04-05 23:35:50 +0000 |
commit | 44784f69e0390af171d2206b964253a34ac19b4d (patch) | |
tree | 6ed49c00c4751ec4d0f0c809991f87edeeb48d4b | |
parent | 4085fb08fdd936212d9f3bbc9ded660dd3332786 (diff) | |
download | samba-44784f69e0390af171d2206b964253a34ac19b4d.tar.gz samba-44784f69e0390af171d2206b964253a34ac19b4d.tar.bz2 samba-44784f69e0390af171d2206b964253a34ac19b4d.zip |
Under IRIX, a void function may return a value, even if that value is
void!
(This used to be commit e15da6882426edd39ff7fdcd47f1be30c053d4ec)
-rw-r--r-- | source3/smbd/vfs-wrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/vfs-wrap.c b/source3/smbd/vfs-wrap.c index b8325dd1e7..b3d1a35329 100644 --- a/source3/smbd/vfs-wrap.c +++ b/source3/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) |