• F
    md: fix a build warning · 4e023612
    Firo Yang 提交于
    Warning like this:
    
    drivers/md/md.c: In function "update_array_info":
    drivers/md/md.c:6394:26: warning: logical not is only applied
    to the left hand side of comparison [-Wlogical-not-parentheses]
          !mddev->persistent  != info->not_persistent||
    
    Fix it as Neil Brown said:
    mddev->persistent != !info->not_persistent ||
    Signed-off-by: NFiro Yang <firogm@gmail.com>
    Signed-off-by: NNeilBrown <neilb@suse.de>
    4e023612
md.c 232.9 KB