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
path: root/intern
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2020-02-19 17:33:36 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-02-19 17:33:36 +0300
commit8c5e36d0a94568ddc990bed1137b3e5a149fa3c4 (patch)
tree0a50a226a1bffd23697b113db31a94c1e392efab /intern
parent4453509d83dcff4869b39a8d6e14c3d2caeee622 (diff)
Fluid: Fix typo that was made in 4453509d83dc
Diffstat (limited to 'intern')
-rw-r--r--intern/mantaflow/intern/MANTA_main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/mantaflow/intern/MANTA_main.cpp b/intern/mantaflow/intern/MANTA_main.cpp
index 7a0d4e56d37..2566e9b45b8 100644
--- a/intern/mantaflow/intern/MANTA_main.cpp
+++ b/intern/mantaflow/intern/MANTA_main.cpp
@@ -1455,7 +1455,7 @@ int MANTA::writeConfiguration(FluidModifierData *mmd, int framenr)
BLI_join_dirfile(targetFile, sizeof(targetFile), cacheDir, ss.str().c_str());
BLI_path_frame(targetFile, framenr, 0);
- gzFile gzf = (gzfile)BLI_gzopen(targetFile, "wb1"); // do some compression
+ gzFile gzf = (gzFile)BLI_gzopen(targetFile, "wb1"); // do some compression
if (!gzf)
std::cerr << "writeConfiguration: can't open file: " << targetFile << std::endl;
@@ -1550,7 +1550,7 @@ int MANTA::readConfiguration(FluidModifierData *mmd, int framenr)
if (!BLI_exists(targetFile))
return 0;
- gzFile gzf = (gzfile)BLI_gzopen(targetFile, "rb"); // do some compression
+ gzFile gzf = (gzFile)BLI_gzopen(targetFile, "rb"); // do some compression
if (!gzf)
std::cerr << "readConfiguration: can't open file: " << targetFile << std::endl;