Quellcode durchsuchen

Fixed: compile error on Windows

Rod Hynes vor 11 Jahren
Ursprung
Commit
7c6f5ebe74
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      psiphon/directConn_windows.go

+ 1 - 1
psiphon/directConn_windows.go

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