diff options
author | tmm <tmm@FreeBSD.org> | 2003-07-12 17:56:50 +0000 |
---|---|---|
committer | tmm <tmm@FreeBSD.org> | 2003-07-12 17:56:50 +0000 |
commit | b739c4c7cdb24ae8ae155796e32a57d0fc1696e3 (patch) | |
tree | 09c63d9e1d45252a695f48457b1d3918e9ebfa79 /usr.sbin/usbd | |
parent | b23c0b422ef7159cfc9eba25e3d14a31f0597540 (diff) | |
download | FreeBSD-src-b739c4c7cdb24ae8ae155796e32a57d0fc1696e3.zip FreeBSD-src-b739c4c7cdb24ae8ae155796e32a57d0fc1696e3.tar.gz |
The second argument to fgetln() is a size_t *, not an int *.
Diffstat (limited to 'usr.sbin/usbd')
-rw-r--r-- | usr.sbin/usbd/usbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/usbd/usbd.c b/usr.sbin/usbd/usbd.c index b48e1af..e7ae4da 100644 --- a/usr.sbin/usbd/usbd.c +++ b/usr.sbin/usbd/usbd.c @@ -426,7 +426,7 @@ read_configuration(void) char *field; /* first part, the field name */ char *args; /* second part, arguments */ char *trail; /* remaining part after parsing, should be '' */ - int len; /* length of current line */ + size_t len; /* length of current line */ int i,j; /* loop counters */ action_t *action = NULL; /* current action */ |