respondd: use size_t for length instead of int

This commit is contained in:
lemoer 2016-09-10 03:27:17 +02:00
parent 923a8fef68
commit 091bb8ed09
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ struct request_task {
};
struct request_schedule {
int length;
size_t length;
struct request_task *list_head;
};