diff options
author | John Ankarström <john@ankarstrom.se> | 2022-03-30 20:15:52 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-03-30 20:15:52 +0200 |
commit | c9b8d278883a90f534f30f0830bb003460310823 (patch) | |
tree | 009344dc7955e0c971d1c5bac102f7805ea363aa /c/common.c | |
parent | d1bfa9c377b63ee051e668e8bb60f6051c65787d (diff) | |
download | EpisodeBrowser-c9b8d278883a90f534f30f0830bb003460310823.tar.gz |
Disregard foreign frames.
I don't think they're necessary.
Diffstat (limited to 'c/common.c')
-rw-r--r-- | c/common.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -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; } |