From 18181104592ffee9d21433e0e21f85e2b7f277b1 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 16 Dec 2021 10:08:31 +0100 Subject: Fix compile error on Windows. --- source/blender/blenlib/intern/path_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c index de71188abfe..8f7180a5b96 100644 --- a/source/blender/blenlib/intern/path_util.c +++ b/source/blender/blenlib/intern/path_util.c @@ -1008,7 +1008,7 @@ bool BLI_path_is_abs_from_cwd(const char *path) const int path_len_clamp = BLI_strnlen(path, 3); #ifdef WIN32 - if ((ppath_len_clamp >= 3 && BLI_path_is_abs(path)) || BLI_path_is_unc(path)) { + if ((path_len_clamp >= 3 && BLI_path_is_abs(path)) || BLI_path_is_unc(path)) { is_abs = true; } #else -- cgit v1.2.3