1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

lvcreate: fix return value

Return correct 0 instead of NULL.
This commit is contained in:
Zdenek Kabelac 2015-08-12 14:53:00 +02:00
parent a8b9e2eccd
commit 2cf3336130

View File

@ -574,7 +574,7 @@ static int _read_cache_params(struct cmd_context *cmd,
&lp->cache_mode,
&lp->policy_name,
&lp->policy_settings))
return_NULL;
return_0;
return 1;
}