From 925f6387c8b5bd63ecd128c9187d8424607e0fa8 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 8 Jul 2010 15:44:39 +0200 Subject: Fix sign warnings from win32 compiler --- common/marshaller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/marshaller.c') diff --git a/common/marshaller.c b/common/marshaller.c index 70008a84..6ee7b6ab 100644 --- a/common/marshaller.c +++ b/common/marshaller.c @@ -348,7 +348,7 @@ uint8_t *spice_marshaller_add_ref(SpiceMarshaller *m, uint8_t *data, size_t size void spice_marshaller_add_ref_chunks(SpiceMarshaller *m, SpiceChunks *chunks) { - int i; + unsigned int i; for (i = 0; i < chunks->num_chunks; i++) { spice_marshaller_add_ref(m, chunks->chunk[i].data, -- cgit