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>2015-02-06 05:54:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-02-06 05:55:20 +0300
commit4cbf2ebdc924db94681bb154e58385f32d1ba9a3 (patch)
treec2ce303a2671c6a2fbce6d900d45447d7eeada1b /source/blender/blenfont
parentced4c5fe2260489f44a38498c3adfd3333215a26 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenfont')
-rw-r--r--source/blender/blenfont/intern/blf_lang.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenfont/intern/blf_lang.c b/source/blender/blenfont/intern/blf_lang.c
index 7206d71b3b8..99e1aa5d3e3 100644
--- a/source/blender/blenfont/intern/blf_lang.c
+++ b/source/blender/blenfont/intern/blf_lang.c
@@ -209,7 +209,7 @@ void BLF_lang_init(void)
* Would also be good to find nicer way to check if LANG is correct.
*/
const char *lang = getenv("LANG");
- if(lang != NULL) {
+ if (lang != NULL) {
char *old_locale = setlocale(LC_ALL, NULL);
/* Make a copy so subsequenct setlocale() doesn't interfere. */
old_locale = BLI_strdup(old_locale);