From c0ffd43e514e6392835ef85529423744263809af Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 21 Apr 2013 14:00:27 +0200 Subject: [PATCH] Small error message fix. --- stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream.cpp b/stream.cpp index 6a84027..0c0faba 100644 --- a/stream.cpp +++ b/stream.cpp @@ -185,7 +185,7 @@ void Stream::add_data_raw(const vector &orig_data) } while (ret == -1 && errno == EINTR); if (ret == -1) { - log_perror("pwrite"); + log_perror("pwritev"); // Dazed and confused, but trying to continue... return; } -- 2.39.2