kern/97377: [PATCH] syntax cleanup

David Rhodus drhodus at machdep.com
Wed May 17 00:50:12 UTC 2006


>Number:         97377
>Category:       kern
>Synopsis:       [PATCH] syntax cleanup
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 17 00:50:11 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     David Rhodus
>Release:        
>Organization:
>Environment:
>Description:
Index: ntfs_ihash.c
===================================================================
RCS file: /home/ncvs/src/sys/fs/ntfs/ntfs_ihash.c,v
retrieving revision 1.21
diff -u -r1.21 ntfs_ihash.c
--- ntfs_ihash.c        6 Jan 2005 18:10:39 -0000       1.21
+++ ntfs_ihash.c        17 May 2006 00:45:25 -0000
@@ -89,9 +89,10 @@
        struct ntnode *ip;

        mtx_lock(&ntfs_nthash_mtx);
-       LIST_FOREACH(ip, NTNOHASH(dev, inum), i_hash)
+       LIST_FOREACH(ip, NTNOHASH(dev, inum), i_hash) {
                if (inum == ip->i_number && dev == ip->i_dev)
                        break;
+       }
        mtx_unlock(&ntfs_nthash_mtx);

        return (ip);

>How-To-Repeat:

>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-bugs mailing list