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-07-14 02:17:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-14 02:17:00 +0300
commitb7c42ef93edeadc28015a6eae184ff07f26e9c36 (patch)
tree5db2071d1eeb564106cc960e8ec74df77ea90725 /source/blender/blenkernel/intern/unit.c
parent2de497eee0aed6bf1444e494a3871ec0e0d728db (diff)
Cleanup: use ascii as suffix (as with utf8)
Diffstat (limited to 'source/blender/blenkernel/intern/unit.c')
-rw-r--r--source/blender/blenkernel/intern/unit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/unit.c b/source/blender/blenkernel/intern/unit.c
index 0d83695d2f1..d1fd0556fc6 100644
--- a/source/blender/blenkernel/intern/unit.c
+++ b/source/blender/blenkernel/intern/unit.c
@@ -645,7 +645,7 @@ bool bUnit_ReplaceString(char *str, int len_max, const char *str_prev, double sc
}
/* make lowercase */
- BLI_ascii_strtolower(str, len_max);
+ BLI_str_tolower_ascii(str, len_max);
/* Try to find a default unit from current or previous string. */
default_unit = unit_detect_from_str(usys, str, str_prev);