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>2010-02-16 19:47:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-16 19:47:41 +0300
commitaefe9be5db3f767c343bae56eb49621a78b7d5b2 (patch)
tree528f363100f80b47f15d265a23499eae781dbe50 /source/creator/creator.c
parented540dd1f17eb4e8e81068509ffc93933a548aef (diff)
[#18961] Use const char * where appropriate (2.5)
from Sean Bartell (wtachi) added own changes bpy_props.c
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 68d0730a6f5..bbe0b4a1378 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -1053,7 +1053,7 @@ static void error_cb(char *err)
printf("%s\n", err); /* XXX do this in WM too */
}
-static void mem_error_cb(char *errorStr)
+static void mem_error_cb(const char *errorStr)
{
fputs(errorStr, stderr);
fflush(stderr);