From b6821bb661dd944d08fd6382e59a2d4f9c88c41f Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sun, 26 Jun 2022 03:45:38 +0000 Subject: [PATCH] changed a log message --- hio/lib/hio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hio/lib/hio.c b/hio/lib/hio.c index 826089c..e5150d6 100644 --- a/hio/lib/hio.c +++ b/hio/lib/hio.c @@ -768,7 +768,7 @@ static HIO_INLINE void handle_event (hio_t* hio, hio_dev_t* dev, int events, int /* 1. input ended and its reporting failed or * 2. input ended and no writing is possible */ if (dev->dev_cap & HIO_DEV_CAP_OUT_CLOSED) - HIO_DEBUG1 (hio, "DEV(%p) - halting a stream device as output is closed\n", dev); + HIO_DEBUG1 (hio, "DEV(%p) - halting a stream device on input EOF as output is also closed\n", dev); else HIO_DEBUG2 (hio, "DEV(%p) - halting a stream device for on_read failure while output is closed - %js\n", dev, hio_geterrmsg(hio)); hio_dev_halt (dev);