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:
authorMartin Felke <martin.felke@googlemail.com>2015-01-09 16:54:19 +0300
committerMartin Felke <martin.felke@googlemail.com>2015-01-09 16:54:19 +0300
commit4c6b50c8abddb3db8c6af63d7c79a7c374e8036f (patch)
tree99a657047ad38b40f23be0600568510783e80067 /source/blender/makesdna/intern/makesdna.c
parent5a51b93aa59897bb36ce82d0d571d8ea39358793 (diff)
parentac619aaf38c3058e1b8cd0e665f011a0e1f692c3 (diff)
Merge remote-tracking branch 'refs/remotes/origin/master' into fracture_modifier
Diffstat (limited to 'source/blender/makesdna/intern/makesdna.c')
-rw-r--r--source/blender/makesdna/intern/makesdna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index 07524899abc..304935b9046 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -910,7 +910,7 @@ static void dna_write(FILE *file, const void *pntr, const int size)
int i;
const char *data;
- data = (char *) pntr;
+ data = (const char *)pntr;
for (i = 0; i < size; i++) {
fprintf(file, "%d, ", data[i]);