[PATCH:xdm] Add a cast to avoid a compiler error.
Thomas Klausner
wiz at NetBSD.org
Sun Jun 2 13:21:13 PDT 2013
XXX: this code should be revisited.
---
xdm/prngc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xdm/prngc.c b/xdm/prngc.c
index f0db8eb..fe737e3 100644
--- a/xdm/prngc.c
+++ b/xdm/prngc.c
@@ -130,7 +130,7 @@ reopen:
msg[0] = 0x02;
msg[1] = len;
- if (atomicio(write, fd, msg, sizeof(msg)) != sizeof(msg)) {
+ if (atomicio((ssize_t (*)(int, void *, size_t))write, fd, msg, sizeof(msg)) != sizeof(msg)) {
if (errno == EPIPE && errors < 10) {
close(fd);
errors++;
--
1.8.2.3
More information about the xorg-devel
mailing list