[REISERFS] Convert a tab to spaces

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)) {
  ^~
This commit is contained in:
Timo Kreuzer 2019-04-28 18:18:23 +02:00 committed by Hervé Poussineau
parent 9dc6c14eca
commit 2944d29969

View 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;