pike.git/
src/
builtin_functions.c
Branch:
Tag:
Non-build tags
All tags
No tags
2000-12-18
2000-12-18 21:38:00 by Henrik Grubbström (Grubba) <grubba@grubba.org>
ce1a5867fdc702592178b7c8731f2583191add44 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Oops, bugfix.
Rev: src/builtin_functions.c:1.325
5:
\*/ /**/ #include "global.h"
-
RCSID("$Id: builtin_functions.c,v 1.
324
2000/12/18
16
:
43
:
06
grubba Exp $");
+
RCSID("$Id: builtin_functions.c,v 1.
325
2000/12/18
21
:
38
:
00
grubba Exp $");
#include "interpret.h" #include "svalue.h" #include "pike_macros.h"
598:
} if (a->size_shift == b->size_shift) {
-
int res = !MEMCMP(a->str + (a->len - b->len)<<b->size_shift, b->str,
+
int res = !MEMCMP(a->str + (
(
a->len - b->len)<<b->size_shift
)
, b->str,
b->len << b->size_shift); pop_n_elems(args); push_int(res);