From 77f57ba9281701ef6078d11a124655c8428dc881 Mon Sep 17 00:00:00 2001 From: vsc Date: Thu, 10 Jan 2002 21:41:54 +0000 Subject: [PATCH] get rid of debugging message in iopreds.c git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@286 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- C/iopreds.c | 1 - 1 file changed, 1 deletion(-) diff --git a/C/iopreds.c b/C/iopreds.c index fd13be29f..55271320a 100644 --- a/C/iopreds.c +++ b/C/iopreds.c @@ -1145,7 +1145,6 @@ PipeGetc(int sno) int count; count = read(s->u.pipe.fd, &c, sizeof(char)); #endif - printf("reading from pipe %c\n", c); if (count == 0) { ch = EOF; } else if (count > 0) {