commit 5f541922afef40e674ea673c54d4416bab619fa2
parent e92d374581061255f6fdb70c68843bc077c33825
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 29 Mar 2016 10:24:36 +0200
remove time field
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/util.h b/util.h
@@ -7,7 +7,6 @@ size_t strlcat(char *, const char *, size_t);
size_t strlcpy(char *, const char *, size_t);
#define ISUTF8(c) (((c) & 0xc0) != 0x80)
-#define LEN(x) (sizeof (x) / sizeof *(x))
/* feed info */
struct feed {
@@ -27,7 +26,7 @@ struct uri {
};
enum {
- FieldUnixTimestamp = 0, FieldTimeFormatted, FieldTitle,
+ FieldUnixTimestamp = 0, FieldTitle,
FieldLink, FieldContent, FieldContentType, FieldId, FieldAuthor,
FieldFeedType, FieldLast
};