aboutsummaryrefslogtreecommitdiff
path: root/musw.c
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2021-07-23 03:43:39 +0000
committerrodri <rgl@antares-labs.eu>2021-07-23 03:43:39 +0000
commitf54a8666413d80db3bda3de6e17f795faf7790eb (patch)
tree914e6ec2401c3ca5061982deb7615274d968007d /musw.c
parent615575f7dca0e43ecb23c4ab1ea7fd2e93c4e3b4 (diff)
downloadmusw-f54a8666413d80db3bda3de6e17f795faf7790eb.tar.gz
musw-f54a8666413d80db3bda3de6e17f795faf7790eb.tar.bz2
musw-f54a8666413d80db3bda3de6e17f795faf7790eb.zip
some corrections.
Diffstat (limited to 'musw.c')
-rw-r--r--musw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/musw.c b/musw.c
index f58765c..a88f0fc 100644
--- a/musw.c
+++ b/musw.c
@@ -16,7 +16,7 @@ threadnetin(void *arg)
while((n = ioread(io, fd, buf, sizeof buf)) > 0)
if(iowrite(io, 1, buf, n) != n)
- fprint(2, "iowrite: %r\n");
+ fprint(2, "netin iowrite: %r\n");
closeioproc(io);
}
@@ -32,7 +32,7 @@ threadnetout(void *arg)
while((n = ioread(io, 0, buf, sizeof buf)) > 0)
if(iowrite(io, fd, buf, n) != n)
- fprint(2, "iowrite: %r\n");
+ fprint(2, "netout iowrite: %r\n");
closeioproc(io);
}