Просмотр исходного кода

Fixed: compile error on Windows

Rod Hynes 11 лет назад
Родитель
Сommit
7c6f5ebe74
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      psiphon/directConn_windows.go

+ 1 - 1
psiphon/directConn_windows.go

@@ -22,7 +22,6 @@
 package psiphon
 
 import (
-	"fmt"
 	"net"
 	"time"
 )
@@ -48,4 +47,5 @@ func interruptibleDial(
 
 func interruptibleClose(interruptible interruptibleConn) error {
 	Fatal("interruptibleClose not supported on Windows")
+	return nil
 }