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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-09-10 19:10:14 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2015-01-20 11:29:58 +0300
commitf336ca5952b005c946c92e2d0f0b333152b17191 (patch)
treeff26f37b2a3d68b9a5253469a3bc1567265e2542 /source/blender/blenkernel/intern/implicit.c
parentb241f23b19e023ee10b377b1504b1592f2f884d2 (diff)
Minor fix in debug print, so solver prints can be diff'ed.
Diffstat (limited to 'source/blender/blenkernel/intern/implicit.c')
-rw-r--r--source/blender/blenkernel/intern/implicit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/implicit.c b/source/blender/blenkernel/intern/implicit.c
index 01b572cbe8b..c401eefa7dd 100644
--- a/source/blender/blenkernel/intern/implicit.c
+++ b/source/blender/blenkernel/intern/implicit.c
@@ -366,9 +366,9 @@ static void print_lvector(lfVector *v, int numverts)
if (i > 0)
printf("\n");
- printf("%f\n", v[i][0]);
- printf("%f\n", v[i][1]);
- printf("%f\n", v[i][2]);
+ printf("%f,\n", v[i][0]);
+ printf("%f,\n", v[i][1]);
+ printf("%f,\n", v[i][2]);
}
}