aboutsummaryrefslogtreecommitdiff
path: root/editors/imhex/files/patch-plugins_builtin_source_content_pl__builtin__functions.cpp
blob: b922e005ca85021e1174857e129113a8aecc0efb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- plugins/builtin/source/content/pl_builtin_functions.cpp.orig	2022-04-17 23:53:01 UTC
+++ plugins/builtin/source/content/pl_builtin_functions.cpp
@@ -203,7 +203,7 @@ namespace hex::plugin::builtin {
                 const auto signIndex = index >> (sizeof(index) * 8 - 1);
                 const auto absIndex  = (index ^ signIndex) - signIndex;
 #else
-                    const auto absIndex = std::abs(index);
+                    const auto absIndex = (unsigned long)std::abs((long)index);
 #endif
 
                 if (absIndex > string.length())