From 83d0a1727b9122d3e7e04943aeb2af5f4203d1fc Mon Sep 17 00:00:00 2001 From: Byongho Lee Date: Mon, 4 Jan 2016 10:01:30 +0900 Subject: btrfs-progs: use NULL instead of 0 Fix the code assigning 0 to pointer instead of NULL. Signed-off-by: Byongho Lee Signed-off-by: David Sterba --- props.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'props.c') diff --git a/props.c b/props.c index c9e2bd4..5b74932 100644 --- a/props.c +++ b/props.c @@ -194,5 +194,5 @@ const struct prop_handler prop_handlers[] = { prop_object_dev | prop_object_root, prop_label}, {"compression", "Set/get compression for a file or directory", 0, prop_object_inode, prop_compression}, - {0, 0, 0, 0, 0} + {NULL, NULL, 0, 0, NULL} }; -- cgit v1.2.1