commit 1d78c2ccff34246288c8bede1f06cc8711f35b6b parent 8f16928a591ac1b4432570aaf4034dc587932516 Author: qorg11 <qorg@vxempire.xyz> Date: Wed, 9 Sep 2020 19:49:02 +0200 It seems that, somehow, i typed 1 instead of 0 Diffstat:
M | src/tee.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tee.c b/src/tee.c @@ -21,7 +21,7 @@ tee(int fd) if(fd != 1) write(1,buf,read_bytes); } - return 1; + return 0; } int