1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 01:57:12 -05:00

format code

This commit is contained in:
V2Ray 2015-10-14 01:15:29 +02:00
parent 3c946daf88
commit 8408b7735c

View File

@ -92,11 +92,11 @@ func (vp *Point) Start() error {
return retry.Timed(100 /* times */, 100 /* ms */).On(func() error {
err := vp.ich.Listen(vp.port)
if err == nil {
log.Warning("Point server started on port %d", vp.port)
return nil
}
return err
if err == nil {
log.Warning("Point server started on port %d", vp.port)
return nil
}
return err
})
}