You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libe/files/libe-0.11.0-strtoul.patch

12 lines
246 B

--- a/e/convert.h
+++ b/e/convert.h
@@ -58,7 +58,7 @@
errno = 0;
#ifdef _MSC_VER
- ret = _strtoui64(s.c_str(), &endptr, base);
+ ret = strtoul(s.c_str(), &endptr, base);
#else
ret = strtoull(s.c_str(), &endptr, base);
#endif