diff --git a/Ryujinx.Core/OsHle/Process.cs b/Ryujinx.Core/OsHle/Process.cs
index 1c31d3e05..cda921bec 100644
--- a/Ryujinx.Core/OsHle/Process.cs
+++ b/Ryujinx.Core/OsHle/Process.cs
@@ -123,7 +123,7 @@ namespace Ryujinx.Core.OsHle
                 MemoryRegions.MainStackAddress,
                 MemoryRegions.MainStackSize,
                 MemoryType.Normal);
-            
+
             long StackTop = MemoryRegions.MainStackAddress + MemoryRegions.MainStackSize;
 
             int Handle = MakeThread(Executables[0].ImageBase, StackTop, 0, 0, 0);
@@ -254,7 +254,7 @@ namespace Ryujinx.Core.OsHle
                 if (e.Position >= Executables[Index].ImageBase)
                 {
                     NsoName = $"{(e.Position - Executables[Index].ImageBase):x16}";
-                    
+
                     break;
                 }
             }
diff --git a/Ryujinx.Core/OsHle/Services/IpcService.cs b/Ryujinx.Core/OsHle/Services/IpcService.cs
index 33300dec9..69570beae 100644
--- a/Ryujinx.Core/OsHle/Services/IpcService.cs
+++ b/Ryujinx.Core/OsHle/Services/IpcService.cs
@@ -14,7 +14,7 @@ namespace Ryujinx.Core.OsHle.Services
 
         private int SelfId;
 
-        private bool IsDomain;       
+        private bool IsDomain;
 
         public IpcService()
         {