commit c06683bfcc3066ece6177a2256efeeb1f873c79d from: Omar Polo date: Sat Jul 09 07:41:19 2022 UTC drop needless debug printf commit - e5d4e9f73fbe66368cc588e02eccc6757ccdada2 commit + c06683bfcc3066ece6177a2256efeeb1f873c79d blob - 18ed3f53e3a54dcdd447f20a3774e35847c68258 blob + d48e57a314ca493e97f0039da8b3fbd3ccff947b --- control.c +++ control.c @@ -410,7 +410,6 @@ control_dispatch_imsg(int fd, short event, void *bula) main_senderr(&c->iev, "wrong size"); break; } - log_debug("got IMSG_CTL_SEEK, forwarding it"); main_send_player(IMSG_CTL_SEEK, -1, imsg.data, IMSG_DATA_SIZE(imsg)); control_notify(&c->iev, imsg.hdr.type); blob - 360762778cc98ec5c3b3976f84f2af73b6b1fb8a blob + 0000c72ac2ba331ec314d6d4fdb26bd78c5020ca --- player.c +++ player.c @@ -196,8 +196,6 @@ again: if (IMSG_DATA_SIZE(imsg) != sizeof(seek)) fatalx("wrong size for seek ctl"); memcpy(&seek, imsg.data, sizeof(seek)); - log_debug("got to seek: {%lld, %d}", seek.offset, - seek.relative); *s = seek.offset * par.rate; if (seek.relative) *s += samples;