diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-21 17:21:09 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-21 17:21:09 +0200 |
commit | b3940ddf986bad891c7d76249860957691affda7 (patch) | |
tree | 5bcfe38eec6aaac6000c8a1aa5f6095cbfb5e9f8 | |
parent | 1d946c47fced8134d144a32da85a85f5183f71a9 (diff) |
sfeed: xml_entitytostr returns ssize_t
-rw-r--r-- | sfeed.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -539,7 +539,7 @@ static void xml_handler_data_entity(XMLParser *p, const char *data, size_t datalen) { char buffer[16]; - int len; + ssize_t len; if (!ctx.field) return; |