From 9a02a46cf4a54c988c799c60d047ef8c3ad74785 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Fri, 7 Apr 2017 11:03:58 -0700 Subject: [PATCH] tst: passthrough-dotnet: fix problem with vshost ignore Main return value --- tst/passthrough-dotnet/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tst/passthrough-dotnet/Program.cs b/tst/passthrough-dotnet/Program.cs index f34c72a8..25e5d0ae 100644 --- a/tst/passthrough-dotnet/Program.cs +++ b/tst/passthrough-dotnet/Program.cs @@ -37,9 +37,9 @@ namespace passthrough class Program { - static int Main(string[] args) + static void Main(string[] args) { - return new PtfsService().Run(); + Environment.ExitCode = new PtfsService().Run(); } } }