1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00
freebsd-ports/news/cnews/files/patch-batcher.c
Dirk Meyer ee16702944 - revert r346880
Approved by:	bapt

- update LICENSE
- fix build with new clang
2014-03-19 14:09:29 +00:00

26 lines
460 B
C

--- batch/batcher.c.orig 1994-11-28 02:14:35.000000000 +0100
+++ batch/batcher.c 2014-02-07 16:48:39.000000000 +0100
@@ -12,6 +12,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
@@ -116,7 +117,7 @@
*/
if (debug)
warning("can't find `%s'", article);
- return;
+ return 0;
}
if (fstat(artfile, &sbuf) < 0)
@@ -143,4 +144,5 @@
}
(void) close(artfile);
+ return 0;
}