diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-08-23 13:59:25 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-08-23 13:59:25 +0200 |
commit | 8d307aafe680b698d14e501d518bb49363c86d22 (patch) | |
tree | cefaf32bdda60550e3edc39aaa4864bb75dd3ddb | |
parent | c460ba9cb9d79d9007327c8ace7a7ac2c17e6277 (diff) |
sfeed_tail: sleep the proper time, was a debug left-over
-rw-r--r-- | sfeed_tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_tail.c b/sfeed_tail.c index d401b4e..822aa23 100644 --- a/sfeed_tail.c +++ b/sfeed_tail.c @@ -172,7 +172,7 @@ main(int argc, char *argv[]) } /* "garbage collect" on a change or every 5 minutes */ - if (changed || slept > 10) { + if (changed || slept > 300) { gc(); changed = 0; slept = 0; |