Quellcode durchsuchen

Merge pull request #10139 from DennisMao/patch-1

tools: fix building failures on Win
Gyuho Lee vor 7 Jahren
Ursprung
Commit
1f5aea320a
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      tools/etcd-dump-metrics/install_windows.go

+ 2 - 2
tools/etcd-dump-metrics/install_windows.go

@@ -18,6 +18,6 @@ package main
 
 
 import "errors"
 import "errors"
 
 
-func install(ver, dir string) error {
-	return errors.New("windows install is not supported yet")
+func install(ver, dir string) (string, error) {
+	return "", errors.New("windows install is not supported yet")
 }
 }