From 7a7432f2b566cacee4e4176df9d68f84fbc06d40 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sun, 6 May 2018 11:20:43 -0400 Subject: [PATCH] fix error message --- contrib/backends/nntpchan-daemon/daemon/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/backends/nntpchan-daemon/daemon/main.cpp b/contrib/backends/nntpchan-daemon/daemon/main.cpp index d3da67c..efe6c3b 100644 --- a/contrib/backends/nntpchan-daemon/daemon/main.cpp +++ b/contrib/backends/nntpchan-daemon/daemon/main.cpp @@ -144,7 +144,7 @@ int main(int argc, char *argv[], char * argenv[]) } else { - std::cerr << "nntpd for " << nntp->InstanceName() << "failed to bind to " << a << ": "<< strerror(errno) << std::endl; + std::cerr << "nntpd for " << nntp->InstanceName() << " failed to bind to " << a << ": "<< strerror(errno) << std::endl; return 1; } } catch (std::exception &ex)