format code

pull/45/head
V2Ray 2015-10-14 01:15:29 +02:00
parent 3c946daf88
commit 8408b7735c
1 changed files with 5 additions and 5 deletions

View File

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