Browse Source

Fix error string about containers feature

Signed-off-by: Darren Stahl <darst@microsoft.com>
Darren Stahl 7 years ago
parent
commit
31405b556f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      daemon/daemon_windows.go

+ 1 - 1
daemon/daemon_windows.go

@@ -235,7 +235,7 @@ func checkSystem() error {
 
 
 	vmcompute := windows.NewLazySystemDLL("vmcompute.dll")
 	vmcompute := windows.NewLazySystemDLL("vmcompute.dll")
 	if vmcompute.Load() != nil {
 	if vmcompute.Load() != nil {
-		return fmt.Errorf("Failed to load vmcompute.dll. Ensure that the Containers role is installed.")
+		return fmt.Errorf("failed to load vmcompute.dll, ensure that the Containers feature is installed")
 	}
 	}
 
 
 	return nil
 	return nil