Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-16 06:51:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-16 06:51:25 +0300
commit941206559e1c1cf28ca4b6d466e8887caf76282f (patch)
tree6534fddde00e4edb984301fd124df8f6a90cd7d5
parentdb80d5c560f55eaaad2702a4dae61b4b9c027e26 (diff)
Fix DDS failure ignoring message argument
-rw-r--r--source/blender/imbuf/intern/dds/Stream.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}
}