From 235255a58e53fde2b1cbb4cc5194d76252c68490 Mon Sep 17 00:00:00 2001 From: Chinmay Deshpande Date: Fri, 5 Dec 2025 04:45:09 -0500 Subject: [PATCH] [COMGR][NFC] Fix incorrect indent Change-Id: Iaac271b0741598b0231067d32751681eb8af9c8e --- amd/comgr/src/comgr-compiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amd/comgr/src/comgr-compiler.cpp b/amd/comgr/src/comgr-compiler.cpp index 358e8af87f4c8..24a3793a2758b 100644 --- a/amd/comgr/src/comgr-compiler.cpp +++ b/amd/comgr/src/comgr-compiler.cpp @@ -2207,14 +2207,14 @@ AMDGPUCompiler::AMDGPUCompiler(DataAction *ActionInfo, DataSet *InSet, if ((VFSStatus.has_value() && *VFSStatus) || (!VFSStatus.has_value() && ActionInfo->ShouldUseVFS)) { if (env::shouldEmitVerboseLogs()) { - LogS << " File System: VFS\n"; + LogS << "\t File System: VFS\n"; } UseVFS = true; InMemoryFS = new vfs::InMemoryFileSystem; OverlayFS->pushOverlay(InMemoryFS); } else { if (env::shouldEmitVerboseLogs()) { - LogS << " File System: Real\n"; + LogS << "\t File System: Real\n"; } } }