diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2008-11-21 11:14:43 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2008-11-21 11:14:43 +0000 |
commit | 314a75f5462e9b1a2ea3d097579dbb8db9a91d92 (patch) | |
tree | fa9c6ea44ee936603248fb8874c3d24cda9fc648 /usr.sbin/ospfd | |
parent | b0c613da10f0c496e63de57d577671f797ccdaf8 (diff) |
imsg_* returns ssize_t
Diffstat (limited to 'usr.sbin/ospfd')
-rw-r--r-- | usr.sbin/ospfd/control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/control.c b/usr.sbin/ospfd/control.c index af35cc1a2d8..20b3b8dd2d8 100644 --- a/usr.sbin/ospfd/control.c +++ b/usr.sbin/ospfd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.20 2008/01/31 12:17:35 henning Exp $ */ +/* $OpenBSD: control.c,v 1.21 2008/11/21 11:14:42 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -188,7 +188,7 @@ control_dispatch_imsg(int fd, short event, void *bula) { struct ctl_conn *c; struct imsg imsg; - int n; + ssize_t n; unsigned int ifidx; if ((c = control_connbyfd(fd)) == NULL) { |