https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200983

            Bug ID: 200983
           Summary: sbin/newfs_nandfs/newfs_nandfs.c:900: bad if test ?
           Product: Base System
           Version: 10.1-RELEASE
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: misc
          Assignee: [email protected]
          Reporter: [email protected]

/sbin/newfs_nandfs/newfs_nandfs.c:900]:
 (warning) Logical conjunction always evaluates to false: rsv_segment_percent < 
1 && rsv_segment_percent > 99.

   if ((rsv_segment_percent < 1) && (rsv_segment_percent > 99))

Maybe

   if ((rsv_segment_percent < 1) || (rsv_segment_percent > 99))

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to