aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/Diagnostics/CommonProcess.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-01 01:56:05 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-01 01:56:05 -0400
commit7036901a9b32fd03439abb440eb4ff1607b6444d (patch)
tree44fb5c39c3e261f209b54e54e93e752f999cb913 /Emby.Common.Implementations/Diagnostics/CommonProcess.cs
parentb1276dc2084515ed817ba8b2af405a9bc1f57cd6 (diff)
fix process exit
Diffstat (limited to 'Emby.Common.Implementations/Diagnostics/CommonProcess.cs')
-rw-r--r--Emby.Common.Implementations/Diagnostics/CommonProcess.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Common.Implementations/Diagnostics/CommonProcess.cs b/Emby.Common.Implementations/Diagnostics/CommonProcess.cs
index 06677bc29..462345ced 100644
--- a/Emby.Common.Implementations/Diagnostics/CommonProcess.cs
+++ b/Emby.Common.Implementations/Diagnostics/CommonProcess.cs
@@ -56,7 +56,7 @@ namespace Emby.Common.Implementations.Diagnostics
{
if (Exited != null)
{
- Exited(_process, e);
+ Exited(this, e);
}
}