summaryrefslogtreecommitdiff
path: root/indra/llvfs
diff options
context:
space:
mode:
authorAnchor <none@none>2019-06-10 15:56:44 -0700
committerNat Goodspeed <nat@lindenlab.com>2020-03-25 18:44:04 -0400
commit32f1dfa531062071ccf090b9c3d391b274caf02b (patch)
tree8672316c478943e66a76b0a7274bb8875d53459d /indra/llvfs
parenta9191a83d9865c129cc483c33a8a338dc00f5cc9 (diff)
[DRTVWR-476] - fix compiler errors 32 bit windows build
Diffstat (limited to 'indra/llvfs')
-rw-r--r--indra/llvfs/lldir.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llvfs/lldir.cpp b/indra/llvfs/lldir.cpp
index 2076ce334e..10fbc06c61 100644
--- a/indra/llvfs/lldir.cpp
+++ b/indra/llvfs/lldir.cpp
@@ -1090,7 +1090,7 @@ LLDir::SepOff LLDir::needSep(const std::string& path, const std::string& name) c
{
// But if BOTH path and name bring a separator, we need not add one.
// Moreover, we should actually skip the leading separator of 'name'.
- return SepOff(false, seplen);
+ return SepOff(false, (unsigned short)seplen);
}
// Here we know that either path_ends_sep or name_starts_sep is true --
// but not both. So don't add a separator, and don't skip any characters: