1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 07:26:24 -05:00

remove unused parameter

This commit is contained in:
Agioi Theodoroi 2020-04-17 20:00:40 -04:00 committed by Kslr
parent 97074c5bf4
commit 37a55653e9
No known key found for this signature in database
GPG Key ID: 0AF5F66FA1E887CE

View File

@ -166,7 +166,7 @@ func main() {
{ {
osSignals := make(chan os.Signal, 1) osSignals := make(chan os.Signal, 1)
signal.Notify(osSignals, os.Interrupt, os.Kill, syscall.SIGTERM) signal.Notify(osSignals, os.Interrupt, syscall.SIGTERM)
<-osSignals <-osSignals
} }
} }