diff options
author | Christoph Hellwig <hch@lst.de> | 2017-04-21 11:24:39 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2017-04-25 09:40:41 -0700 |
commit | fad5656b2247244c9fe4f30d63e4c190c5725840 (patch) | |
tree | 5164e6f8832b9b1cd365642181863596810f3e62 /fs/xfs | |
parent | 0c1d9e4a61590c2a4d657d1deddd1674f1565097 (diff) | |
download | talos-obmc-linux-fad5656b2247244c9fe4f30d63e4c190c5725840.tar.gz talos-obmc-linux-fad5656b2247244c9fe4f30d63e4c190c5725840.zip |
xfs: use NULL instead of 0 to initialize a pointer in xfs_getfsmap
Found by sparse.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_fsmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_fsmap.c b/fs/xfs/xfs_fsmap.c index 48ce356da9e9..3683819887a5 100644 --- a/fs/xfs/xfs_fsmap.c +++ b/fs/xfs/xfs_fsmap.c @@ -827,7 +827,7 @@ xfs_getfsmap( struct xfs_trans *tp = NULL; struct xfs_fsmap dkeys[2]; /* per-dev keys */ struct xfs_getfsmap_dev handlers[XFS_GETFSMAP_DEVS]; - struct xfs_getfsmap_info info = {0}; + struct xfs_getfsmap_info info = { NULL }; int i; int error = 0; |