From b104b29f8e56a199ad1df19e3eecca1e1bd53b46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Mon, 22 Jun 1998 18:39:33 +0200 Subject: [PATCH] Fixed warning. Rev: src/modules/Pipe/pipe.c:1.19 --- src/modules/Pipe/pipe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/Pipe/pipe.c b/src/modules/Pipe/pipe.c index 9fadb4a3f7..0fd65da171 100644 --- a/src/modules/Pipe/pipe.c +++ b/src/modules/Pipe/pipe.c @@ -22,7 +22,7 @@ #include <fcntl.h> -RCSID("$Id: pipe.c,v 1.18 1998/06/12 19:19:00 noring Exp $"); +RCSID("$Id: pipe.c,v 1.19 1998/06/22 16:39:33 grubba Exp $"); #include "threads.h" #include "stralloc.h" @@ -333,7 +333,7 @@ static int read_some_data(void) if (!i || i->type != I_BLOCKING_OBJ) { fatal("PIPE: read_some_data(): Bad input type!\n"); - return; + return(0); /* Keep compiler happy */ } push_int(8192); push_int(1); /* We don't care if we don't get all 8192 bytes. */ -- GitLab