aboutsummaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-01 11:42:41 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-01 11:42:41 +0000
commit80e8c988e13156dbceaf05471e84bf387ef1b225 (patch)
tree8748b4dcf70ea9bc57075f6bfde76f830107a487 /hash.c
parent489de66ac1e450ea5a134219f7a9ea74ccea4c56 (diff)
downloadruby-80e8c988e13156dbceaf05471e84bf387ef1b225.tar.gz
* cont.c, hash.c, random.c, win32/win32.c: cleanup some Win9x/ME/NT4
support leftovers. [fix GH-1328] patched by @cremno git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 19f565ad74..503ff174ac 100644
--- a/hash.c
+++ b/hash.c
@@ -3161,7 +3161,7 @@ getenvsize(const WCHAR* p)
static size_t
getenvblocksize(void)
{
- return (rb_w32_osver() >= 5) ? 32767 : 5120;
+ return 32767;
}
#endif