summaryrefslogtreecommitdiffstats
path: root/source/locking
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-10-17 17:41:13 +0000
committerJeremy Allison <jra@samba.org>1998-10-17 17:41:13 +0000
commit60dc1a4a00a22088d33369588b0d5eb292cf084a (patch)
tree5510227c3380fc1b2f073fb754ca6977680acb2d /source/locking
parent69c7b8e2af225f3711d601a136ad3dbc9aaa476e (diff)
downloadsamba-60dc1a4a00a22088d33369588b0d5eb292cf084a.tar.gz
samba-60dc1a4a00a22088d33369588b0d5eb292cf084a.tar.xz
samba-60dc1a4a00a22088d33369588b0d5eb292cf084a.zip
Small tidyups for gcc in 'preen' mode....
Jeremy.
Diffstat (limited to 'source/locking')
-rw-r--r--source/locking/locking_slow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/locking/locking_slow.c b/source/locking/locking_slow.c
index fd95fd45ec2..f2c2d3e9d9a 100644
--- a/source/locking/locking_slow.c
+++ b/source/locking/locking_slow.c
@@ -1071,6 +1071,6 @@ struct share_ops *locking_slow_init(int ronly)
return &share_ops;
}
#else
- int locking_slow_dummy_procedure(void)
-{return 0;}
+ int locking_slow_dummy_procedure(void);
+ int locking_slow_dummy_procedure(void) {return 0;}
#endif /* !FAST_SHARE_MODES */