Merge from OpenBSD:

revision 1.13
  date: 2015/12/09 11:54:12;  author: tb;  state: Exp;  lines: +2 -2
  Add a cast to silence a compiler warning by clang on FreeBSD.
  From Craig Rodrigues.
  ok tedu@
This commit is contained in:
Craig Rodrigues 2015-12-09 19:22:20 +00:00
parent fbb0e1b56a
commit 7e5ac32b49
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=292023

View file

@ -1,4 +1,4 @@
/* $OpenBSD: imsg.c,v 1.12 2015/12/05 13:06:52 claudio Exp $ */
/* $OpenBSD: imsg.c,v 1.13 2015/12/09 11:54:12 tb Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@ -74,7 +74,7 @@ imsg_read(struct imsgbuf *ibuf)
again:
if (getdtablecount() + imsg_fd_overhead +
(CMSG_SPACE(sizeof(int))-CMSG_SPACE(0))/sizeof(int)
(int)((CMSG_SPACE(sizeof(int))-CMSG_SPACE(0))/sizeof(int))
>= getdtablesize()) {
errno = EAGAIN;
free(ifd);