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>2013-01-12 18:28:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-12 18:28:23 +0400
commitc93e127e7a2040f74655937fedb5a9d439c03aa9 (patch)
tree6ef646a840f21f5ef6e5b5f162c0639459f9c485 /source/creator
parentaab01c86cf56f5d21d2503f7e854bb19b07ca2c6 (diff)
code cleanup: style and replace (float)sin, (float)cos with sinf, cosf
Diffstat (limited to 'source/creator')
-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 4a2274180e7..70123187721 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -516,7 +516,7 @@ static void blender_crash_handler(int signum)
fp = BLI_fopen(fname, "wb");
if (fp == NULL) {
fprintf(stderr, "Unable to save '%s': %s\n",
- fname, errno ? strerror(errno) : "Unknown error opening file");
+ fname, errno ? strerror(errno) : "Unknown error opening file");
}
else {
if (wm) {