mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[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:
parent
9dc6c14eca
commit
2944d29969
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue