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:
authorDan Eicher <dan@eu.phorio.us>2012-05-29 17:59:31 +0400
committerDan Eicher <dan@eu.phorio.us>2012-05-29 17:59:31 +0400
commit45dbb715eea363d33125de04411ac4ce5e7a63a9 (patch)
tree897fec31c430d62ae9ecdf55e844e5267dda5641 /source/blender/makesrna/intern/makesrna.c
parentb1e8063d6999d2eaad62f52bb81ced0876d1aced (diff)
Revert makesrna part of r47158 because it broke building blenderplayer
Apparently not supposed to call ED_* functions from there Also added a missing "\n" that's been annoying me for a long while
Diffstat (limited to 'source/blender/makesrna/intern/makesrna.c')
-rw-r--r--source/blender/makesrna/intern/makesrna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index 31d477dfe07..9661a60f779 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -3122,7 +3122,7 @@ int main(int argc, char **argv)
return_status = 1;
}
else {
- fprintf(stderr, "Running makesrna");
+ fprintf(stderr, "Running makesrna\n");
makesrna_path = argv[0];
return_status = rna_preprocess(argv[1]);
}