aboutsummaryrefslogtreecommitdiff
path: root/src/microspdy/structures.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microspdy/structures.c')
-rw-r--r--src/microspdy/structures.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/microspdy/structures.c b/src/microspdy/structures.c
index b3760be3..6b7fc681 100644
--- a/src/microspdy/structures.c
+++ b/src/microspdy/structures.c
@@ -48,8 +48,8 @@ SPDY_name_value_add (struct SPDY_NameValue *container,
48 const char *name, 48 const char *name,
49 const char *value) 49 const char *value)
50{ 50{
51 uint i; 51 unsigned int i;
52 uint len; 52 unsigned int len;
53 struct SPDY_NameValue *pair; 53 struct SPDY_NameValue *pair;
54 struct SPDY_NameValue *temp; 54 struct SPDY_NameValue *temp;
55 char **temp_value; 55 char **temp_value;
@@ -202,7 +202,7 @@ SPDY_name_value_lookup (struct SPDY_NameValue *container,
202void 202void
203SPDY_name_value_destroy (struct SPDY_NameValue *container) 203SPDY_name_value_destroy (struct SPDY_NameValue *container)
204{ 204{
205 uint i; 205 unsigned int i;
206 struct SPDY_NameValue *temp = container; 206 struct SPDY_NameValue *temp = container;
207 207
208 while(NULL != temp) 208 while(NULL != temp)
@@ -286,7 +286,7 @@ SPDYF_response_queue_create(bool is_data,
286 struct SPDYF_Response_Queue *response_to_queue; 286 struct SPDYF_Response_Queue *response_to_queue;
287 struct SPDYF_Control_Frame *control_frame; 287 struct SPDYF_Control_Frame *control_frame;
288 struct SPDYF_Data_Frame *data_frame; 288 struct SPDYF_Data_Frame *data_frame;
289 uint i; 289 unsigned int i;
290 bool is_last; 290 bool is_last;
291 291
292 SPDYF_ASSERT(!is_data 292 SPDYF_ASSERT(!is_data
@@ -444,9 +444,9 @@ SPDYF_name_value_to_stream(struct SPDY_NameValue * container[],
444 int32_t value_size; 444 int32_t value_size;
445 int32_t name_size; 445 int32_t name_size;
446 int32_t temp; 446 int32_t temp;
447 uint i; 447 unsigned int i;
448 uint offset; 448 unsigned int offset;
449 uint value_offset; 449 unsigned int value_offset;
450 struct SPDY_NameValue * iterator; 450 struct SPDY_NameValue * iterator;
451 int j; 451 int j;
452 452
@@ -533,8 +533,8 @@ SPDYF_name_value_from_stream(void *stream,
533 int32_t value_size; 533 int32_t value_size;
534 int32_t name_size; 534 int32_t name_size;
535 int i; 535 int i;
536 uint offset = 0; 536 unsigned int offset = 0;
537 uint value_end_offset; 537 unsigned int value_end_offset;
538 char *name; 538 char *name;
539 char *value; 539 char *value;
540 540