pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2016-08-29
2016-08-29 15:42:24 by Arne Goedeke <el@laramies.com>
7157b6f4342aa8937fc277b18fc7fa0056787f58 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.1
random_string(): fixed warning
2295:
Pike_error("Unable to resolve random function.\n"); push_int(len); apply_svalue(random, 1);
-
if(TYPEOF(Pike_sp[-1])!=T_STRING || Pike_sp[-1].u.string->len != len ||
+
if(TYPEOF(Pike_sp[-1])!=T_STRING || Pike_sp[-1].u.string->len !=
(ptrdiff_t)
len ||
Pike_sp[-1].u.string->size_shift != 0) Pike_error("Couldn't generate random string.\n"); }