ladybird/Ports/mandoc/patches/fix-catman.patch
2020-01-26 09:10:37 +01:00

12 lines
271 B
Diff

--- mandoc-1.14.5/catman.c.orig Sun Jan 19 23:55:20 2020
+++ mandoc-1.14.5/catman.c Sun Jan 19 23:55:30 2020
@@ -113,7 +113,7 @@
if ((sz = sendmsg(fd, &msg, 0)) != -1 ||
errno != EAGAIN)
break;
- nanosleep(&timeout, NULL);
+ sleep(1);
}
return sz;
}