From b739c4c7cdb24ae8ae155796e32a57d0fc1696e3 Mon Sep 17 00:00:00 2001 From: tmm Date: Sat, 12 Jul 2003 17:56:50 +0000 Subject: The second argument to fgetln() is a size_t *, not an int *. --- usr.sbin/usbd/usbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/usbd/usbd.c') 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 */ -- cgit v1.1