diff --git a/src/ImageSharp/Diagnostics/MemoryDiagnostics.cs b/src/ImageSharp/Diagnostics/MemoryDiagnostics.cs index 6af2544138..f2a433ef1b 100644 --- a/src/ImageSharp/Diagnostics/MemoryDiagnostics.cs +++ b/src/ImageSharp/Diagnostics/MemoryDiagnostics.cs @@ -131,9 +131,9 @@ namespace SixLabors.ImageSharp.Diagnostics allocationStackTrace, preferLocal: false); #else - ThreadPool.QueueUserWorkItem( - stackTrace => this.undisposedAllocation?.Invoke((string)stackTrace), - allocationStackTrace); + ThreadPool.QueueUserWorkItem( + stackTrace => this.undisposedAllocation?.Invoke((string)stackTrace), + allocationStackTrace); #endif } }