diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2012-11-15 15:31:37 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2012-11-15 15:31:37 +0000 |
commit | 9eb6ce555483c6266b944f1e1288ba4f350aee2b (patch) | |
tree | 5c2bd081fb207320c0f5d0ae59e91ae3147f76eb /lib | |
parent | 8b548af0e4aebf0cf2f637f987a7d5cc385cb5ec (diff) |
imsg_get() returns ssize_t, not size_t.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libutil/imsg_init.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libutil/imsg_init.3 b/lib/libutil/imsg_init.3 index 209ddf781d0..ba0f2dbec73 100644 --- a/lib/libutil/imsg_init.3 +++ b/lib/libutil/imsg_init.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: imsg_init.3,v 1.7 2012/10/22 07:15:56 jmc Exp $ +.\" $OpenBSD: imsg_init.3,v 1.8 2012/11/15 15:31:36 krw Exp $ .\" .\" Copyright (c) 2010 Nicholas Marriott <nicm@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING .\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: October 22 2012 $ +.Dd $Mdocdate: November 15 2012 $ .Dt IMSG_INIT 3 .Os .Sh NAME @@ -53,7 +53,7 @@ .Fn imsg_init "struct imsgbuf *ibuf" "int fd" .Ft ssize_t .Fn imsg_read "struct imsgbuf *ibuf" -.Ft size_t +.Ft ssize_t .Fn imsg_get "struct imsgbuf *ibuf" "struct imsg *imsg" .Ft int .Fn imsg_compose "struct imsgbuf *ibuf" "u_int32_t type" "uint32_t peerid" \ |