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:
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index cb2214ee42d..b7d1a30048f 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -186,13 +186,13 @@ static void blender_esc(int sig)
#ifdef BUILD_DATE
static void strip_quotes(char *str)
{
- if(str[0] == '"') {
- int len= strlen(str) - 1;
- memmove(str, str+1, len);
- if(str[len-1] == '"') {
- str[len-1]= '\0';
- }
- }
+ if(str[0] == '"') {
+ int len= strlen(str) - 1;
+ memmove(str, str+1, len);
+ if(str[len-1] == '"') {
+ str[len-1]= '\0';
+ }
+ }
}
#endif