Commit 3ad3f8de authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

widl: Don't compare result of read() to unsigned type.

parent bd7e690c
......@@ -255,7 +255,7 @@ void add_typelib_entry(type_t *t)
typelib->entry = entry;
}
static void tlb_read(int fd, void *buf, size_t count)
static void tlb_read(int fd, void *buf, int count)
{
if(read(fd, buf, count) < count)
error("error while reading importlib.\n");
......
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