From d39a408ad2aac6ca74626a174e9a6aac851f9d81 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Thu, 26 Oct 2006 14:58:56 +0000 Subject: [PATCH] I suggest you stop being sarcastic because your fixes are broken (Hint: reading errno multiple times is incorrect) --- src/network/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/io.c b/src/network/io.c index 7fa8f8f548..c9113a8f69 100644 --- a/src/network/io.c +++ b/src/network/io.c @@ -272,7 +272,7 @@ net_ReadInner( vlc_object_t *restrict p_this, unsigned fdc, const int *fdv, return i_total; error: - msg_Err( p_this, "Read error: %s (errno=%d)", net_strerror (net_errno), net_errno ); + msg_Err( p_this, "Read error: %s", net_strerror (net_errno) ); return i_total ? (ssize_t)i_total : -1; } -- 2.39.5