diff options
Diffstat (limited to 'player')
-rw-r--r-- | player/player.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/player/player.go b/player/player.go index 337d358..e60b416 100644 --- a/player/player.go +++ b/player/player.go @@ -424,7 +424,7 @@ func (p *Player) createPipeline() (err error) { } p.src.Connect("pad-added", func(_ interface{}, srcpad *gst.Pad) { if ret := srcpad.Link(sinkpad); ret != gst.PAD_LINK_OK { - p.stdlog.Println("player error linking src with conv1 (code: %v)", ret) + p.stdlog.Printf("player error linking src with conv1 (code: %v)", ret) } p.dbglog.Println("player succesfully linked src with conv1") }) |