From: Steinar H. Gunderson Date: Sun, 21 Apr 2013 12:00:27 +0000 (+0200) Subject: Small error message fix. X-Git-Tag: 1.0.0~46 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=c0ffd43e514e6392835ef85529423744263809af Small error message fix. --- 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; }