Skip to content

Commit 60d55cb

Browse files
authored
[COMGR][NFC] Fix incorrect indent (#762)
1 parent 341ab02 commit 60d55cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

amd/comgr/src/comgr-compiler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2207,14 +2207,14 @@ AMDGPUCompiler::AMDGPUCompiler(DataAction *ActionInfo, DataSet *InSet,
22072207
if ((VFSStatus.has_value() && *VFSStatus) ||
22082208
(!VFSStatus.has_value() && ActionInfo->ShouldUseVFS)) {
22092209
if (env::shouldEmitVerboseLogs()) {
2210-
LogS << " File System: VFS\n";
2210+
LogS << "\t File System: VFS\n";
22112211
}
22122212
UseVFS = true;
22132213
InMemoryFS = new vfs::InMemoryFileSystem;
22142214
OverlayFS->pushOverlay(InMemoryFS);
22152215
} else {
22162216
if (env::shouldEmitVerboseLogs()) {
2217-
LogS << " File System: Real\n";
2217+
LogS << "\t File System: Real\n";
22182218
}
22192219
}
22202220
}

0 commit comments

Comments
 (0)