summaryrefslogtreecommitdiff
path: root/xdelta3/xdelta3-list.h
diff options
context:
space:
mode:
authorjosh.macdonald <jmacd@users.noreply.github.com>2013-01-21 03:48:02 +0000
committerjosh.macdonald <jmacd@users.noreply.github.com>2013-01-21 03:48:02 +0000
commit6dab5fb9f9ecc61e2cecc227873df55542fc5bb5 (patch)
tree9c36fc8ce08299b96508a117d3132217025a20a3 /xdelta3/xdelta3-list.h
parent589131e4beed56f8f2a6834f183079fe07dc1eda (diff)
Audit -Wconversion results
Diffstat (limited to 'xdelta3/xdelta3-list.h')
-rw-r--r--xdelta3/xdelta3-list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xdelta3/xdelta3-list.h b/xdelta3/xdelta3-list.h
index 6e3125f..9b3bc2b 100644
--- a/xdelta3/xdelta3-list.h
+++ b/xdelta3/xdelta3-list.h
@@ -111,11 +111,11 @@ LTYPE ## _next (ETYPE *f) \
111 return LTYPE ## _entry (f->LNAME.next); \ 111 return LTYPE ## _entry (f->LNAME.next); \
112} \ 112} \
113 \ 113 \
114static inline usize_t \ 114static inline size_t \
115LTYPE ## _length (LTYPE *l) \ 115LTYPE ## _length (LTYPE *l) \
116{ \ 116{ \
117 LTYPE *p; \ 117 LTYPE *p; \
118 int c = 0; \ 118 size_t c = 0; \
119 \ 119 \
120 for (p = l->next; p != l; p = p->next) \ 120 for (p = l->next; p != l; p = p->next) \
121 { \ 121 { \