1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/comms/fldigi/files/patch-src_qrunner_qrunner.cxx
Stephen Hurd e2d1b6c116 Add patch to fix OSS support (bump PORTREVISION)
Switch to Options-NG.
Use makepatch for patchs.

PR:		200039
Submitted by:	takefu@airport.fm
2015-05-11 09:31:38 +00:00

12 lines
331 B
C++

--- src/qrunner/qrunner.cxx.orig 2015-03-21 00:29:04 UTC
+++ src/qrunner/qrunner.cxx
@@ -103,7 +103,7 @@ void qrunner::execute(int fd, void *arg)
return;
qr->inprog = true;
- size_t n = QRUNNER_READ(fd, rbuf, FIFO_SIZE);
+ ssize_t n = QRUNNER_READ(fd, rbuf, FIFO_SIZE);
switch (n) {
case -1:
if (!QRUNNER_EAGAIN()) {