From c9b8d278883a90f534f30f0830bb003460310823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Wed, 30 Mar 2022 20:15:52 +0200 Subject: Disregard foreign frames. I don't think they're necessary. --- c/common.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'c/common.c') diff --git a/c/common.c b/c/common.c index a4ac7d2..804611d 100644 --- a/c/common.c +++ b/c/common.c @@ -31,15 +31,9 @@ TszFromSz(const char *sz, int iCp) int Watched(int iEpisode) { - fid_t f; term_t t; - - F(f); t = T(1); - PI(t,iEpisode) goto f; - P("track_episodes","watched",1,t) goto f; - Fd(f); + PI(t,iEpisode) return 0; + P("track_episodes","watched",1,t) return 0; return 1; -f: Fd(f); - return 0; } -- cgit v1.2.3