diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2013-05-20 19:32:59 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2013-05-20 19:32:59 +0200 |
commit | 56c0c0dc73096bb5d08bd93f8f2644225a551524 (patch) | |
tree | c4473264bb1f519b8a9e6a38424d71cd4a8fd56a | |
parent | a4a8c9f7992dbbf0a636aef3982039b73b31e455 (diff) |
update sfeed_plain: whoops, argv is unused
Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
-rw-r--r-- | sfeed_plain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_plain.c b/sfeed_plain.c index d300c27..5c20b23 100644 --- a/sfeed_plain.c +++ b/sfeed_plain.c @@ -19,7 +19,7 @@ printutf8padded(const char *s, size_t len) { } int -main(int argc, char **argv) { +main(void) { char *line = NULL, *fields[FieldLast]; time_t parsedtime, comparetime; int isnew; |