summaryrefslogtreecommitdiff
path: root/src/raptor_rss.h
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2008-06-15 08:18:12 +0000
committerDave Beckett <dave@dajobe.org>2008-06-15 08:18:12 +0000
commit49aab7b03af4f0b5b5976e840cf7dc2aa89fdfae (patch)
treee87953bef8e681d36da71d812e2711f15da911b1 /src/raptor_rss.h
parentd72cc904f2fec38319ae63bb973c58bdb47dc0e5 (diff)
downloadraptor-49aab7b03af4f0b5b5976e840cf7dc2aa89fdfae.tar.gz
raptor_rss_field bitfields should be unsigned [sparse]
Diffstat (limited to 'src/raptor_rss.h')
-rw-r--r--src/raptor_rss.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raptor_rss.h b/src/raptor_rss.h
index 02fb8240..737864ae 100644
--- a/src/raptor_rss.h
+++ b/src/raptor_rss.h
@@ -245,9 +245,9 @@ struct raptor_rss_field_s
raptor_uri* uri;
struct raptor_rss_field_s* next;
/* this field was mapped from another vocab */
- int is_mapped:1;
+ unsigned int is_mapped:1;
/* value is XML */
- int is_xml:1;
+ unsigned int is_xml:1;
};
typedef struct raptor_rss_field_s raptor_rss_field;