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>2020-04-08 09:29:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-08 09:29:46 +0300
commit57468ae37ef98c7380edfbd97acb3bf6d626e4a7 (patch)
treec1a4b25f37ffec758d6914f94401244706221516 /source/blender/blenlib/intern/path_util.c
parentb0d565e5b60c987b2e9aa6a438704a57e93412c3 (diff)
Cleanup: missed renaming BLI_cleanup_unc_16 in recent refactor
Missed from d14e76806921f
Diffstat (limited to 'source/blender/blenlib/intern/path_util.c')
-rw-r--r--source/blender/blenlib/intern/path_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c
index ad93b643c5e..95b2caa8836 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -497,11 +497,11 @@ static void BLI_path_unc_to_short(wchar_t *unc)
void BLI_path_normalize_unc(char *path, int maxlen)
{
wchar_t *tmp_16 = alloc_utf16_from_8(path, 1);
- BLI_cleanup_unc_16(tmp_16);
+ BLI_path_normalize_unc_16(tmp_16);
conv_utf_16_to_8(tmp_16, path, maxlen);
}
-void BLI_cleanup_unc_16(wchar_t *path_16)
+void BLI_path_normalize_unc_16(wchar_t *path_16)
{
BLI_path_unc_to_short(path_16);
BLI_path_add_slash_to_share(path_16);