From c17a056f3841b2ebc024f5af7ed2c58279641d4b Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Wed, 14 Aug 2013 16:16:45 -0700 Subject: btrfs-progs: use NULL instead of 0 These were mostly in option structs but there were a few gross string pointer arguments given as 0. Signed-off-by: Zach Brown Signed-off-by: David Sterba Signed-off-by: Chris Mason --- btrfs-map-logical.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'btrfs-map-logical.c') diff --git a/btrfs-map-logical.c b/btrfs-map-logical.c index ee8407f..ea0a1ba 100644 --- a/btrfs-map-logical.c +++ b/btrfs-map-logical.c @@ -106,7 +106,7 @@ static struct option long_options[] = { { "copy", 1, NULL, 'c' }, { "output", 1, NULL, 'o' }, { "bytes", 1, NULL, 'b' }, - { 0, 0, 0, 0} + { NULL, 0, NULL, 0} }; int main(int ac, char **av) -- cgit v1.2.1