commit 951252ff9dd357b499c7b72561676a45e83a4797
parent dab883320eada92534d73bede6e0df1b625058ab
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Wed, 9 Sep 2015 00:24:03 +0200
README: fix sfeed_archive example
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/README b/README
@@ -230,6 +230,8 @@ File sfeed_archive.c:
#include <sys/types.h>
+ #include <err.h>
+ #include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -258,7 +260,7 @@ File sfeed_archive.c:
tm.tm_mon = m - 1;
tm.tm_mday = d;
if ((comparetime = mktime(&tm)) == -1)
- usage();
+ err(1, "mktime");
while ((getline(&line, &size, stdin)) > 0) {
if (!(p = strchr(line, '\t')))