Commit 6fe25398 authored by Martin Pool's avatar Martin Pool

Fix another int that ought to be a size_t.

parent 909ce14f
......@@ -255,7 +255,7 @@ static void read_loop (int fd, char *buf, size_t len)
*/
static int read_unbuffered(int fd, char *buf, size_t len)
{
static int remaining;
static size_t remaining;
int tag, ret = 0;
char line[1024];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment