[REISERFS] Convert a tab to spaces
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 28 Apr 2019 16:18:23 +0000 (18:18 +0200)
committerHervé Poussineau <hpoussin@reactos.org>
Mon, 27 May 2019 11:22:40 +0000 (13:22 +0200)
Fixes GCC 8 warning:
drivers/filesystems/reiserfs/src/memory.c:874:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
     if (Mcb->RfsdFcb)
     ^~
drivers/filesystems/reiserfs/src/memory.c:877:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
  if (RfsdLoadInode(Vcb, &(Mcb->Key), &RfsdIno)) {
  ^~

drivers/filesystems/reiserfs/src/memory.c

index 6742b04..6285f46 100644 (file)
@@ -874,7 +874,7 @@ RfsdCreateFcbFromMcb(PRFSD_VCB Vcb, PRFSD_MCB Mcb)
     if (Mcb->RfsdFcb)
         return Mcb->RfsdFcb;
 
-       if (RfsdLoadInode(Vcb, &(Mcb->Key), &RfsdIno)) {
+    if (RfsdLoadInode(Vcb, &(Mcb->Key), &RfsdIno)) {
         PRFSD_INODE pTmpInode = ExAllocatePoolWithTag(PagedPool, sizeof(RFSD_INODE), RFSD_POOL_TAG);
         if (!pTmpInode) {
             goto errorout;