summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2015-01-15 21:08:47 +0100
committerMichael Adam <obnox@samba.org>2015-01-16 13:24:16 +0100
commit691f3531baf68248e6423594121b134e19e79adb (patch)
tree2c6a7f955640331ae380c7dece7d13aeec264e40 /lib
parentc31f54112e21b2e76398a402e864a2b6b6c74e6c (diff)
downloadsamba-691f3531baf68248e6423594121b134e19e79adb.tar.gz
lib/util: add missing commas to statfs_types
Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Fri Jan 16 13:24:16 CET 2015 on sn-devel-104
Diffstat (limited to 'lib')
-rw-r--r--lib/util/wscript_configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/wscript_configure b/lib/util/wscript_configure
index 1270ab3f418..bf017a5429f 100644
--- a/lib/util/wscript_configure
+++ b/lib/util/wscript_configure
@@ -20,7 +20,7 @@ statfs_types = [
( 'STAT_STATFS3_OSF1',
'3-argument statfs function (DEC OSF/1)',
- 'struct statfs fsd; fsd.f_fsize = 0; exit(statfs(".", &fsd, sizeof(struct statfs)))'
+ 'struct statfs fsd; fsd.f_fsize = 0; exit(statfs(".", &fsd, sizeof(struct statfs)))',
'sys/param.h sys/mount.h' ),
( 'STAT_STATFS2_BSIZE',
@@ -35,7 +35,7 @@ statfs_types = [
( 'STAT_STATFS2_FSIZE',
'two-argument statfs with statfs.fsize',
- 'struct statfs fsd; fsd.f_fsize = 0; exit(statfs(".", &fsd))'
+ 'struct statfs fsd; fsd.f_fsize = 0; exit(statfs(".", &fsd))',
'sys/param.h sys/mount.h' ),
( 'STAT_STATFS2_FS_DATA',