1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

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
This commit is contained in:
Ralph Boehme 2015-01-15 21:08:47 +01:00 committed by Michael Adam
parent c31f54112e
commit 691f3531ba

View File

@ -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',