From 941206559e1c1cf28ca4b6d466e8887caf76282f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 16 Apr 2019 05:51:25 +0200 Subject: [PATCH] Fix DDS failure ignoring message argument --- source/blender/imbuf/intern/dds/Stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/imbuf/intern/dds/Stream.cpp b/source/blender/imbuf/intern/dds/Stream.cpp index d8c2862cc09..993fa7734ba 100644 --- a/source/blender/imbuf/intern/dds/Stream.cpp +++ b/source/blender/imbuf/intern/dds/Stream.cpp @@ -97,7 +97,7 @@ unsigned int mem_read(Stream & mem, unsigned char *i, unsigned int cnt) void Stream::set_failed(const char *msg) { if (!failed) { - puts(msg_error_seek); + puts(msg); failed = true; } }