]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] logic error in XFS
authorDave Jones <davej@redhat.com>
Fri, 23 Jan 2004 00:14:52 +0000 (16:14 -0800)
committerLinus Torvalds <torvalds@home.osdl.org>
Fri, 23 Jan 2004 00:14:52 +0000 (16:14 -0800)
Yet another misplaced ! by the looks..

fs/xfs/xfs_log_recover.c

index cbc6a10acc045216e556fc793965ee2f00fa4d3d..f0d4e713675129db24dcdeb93c167eff36109864 100644 (file)
@@ -1553,7 +1553,7 @@ xlog_recover_reorder_trans(
                case XFS_LI_BUF:
                case XFS_LI_6_1_BUF:
                case XFS_LI_5_3_BUF:
-                       if ((!flags & XFS_BLI_CANCEL)) {
+                       if (!(flags & XFS_BLI_CANCEL)) {
                                xlog_recover_insert_item_frontq(&trans->r_itemq,
                                                                itemq);
                                break;