2001-03-04
2001-03-04 19:27:20 by Mirar (Pontus Hagland) <pike@sort.mirar.org>
-
18099a5f3a06e472640900a9dfebf319ec12565e
(6 lines)
(+4/-2)
[
Show
| Annotate
]
Branch: 7.9
more fixes to support INT_TYPE > INT32
Rev: src/acconfig.h:1.81
Rev: src/configure.in:1.495
Rev: src/error.c:1.70
Rev: src/interpret.c:1.188
Rev: src/interpret.h:1.78
Rev: src/modules/Gmp/mpz_glue.c:1.90
Rev: src/modules/Image/colors.c:1.46
Rev: src/modules/sprintf/acconfig.h:1.3
Rev: src/modules/sprintf/configure.in:1.8
Rev: src/modules/sprintf/sprintf.c:1.77
Rev: src/opcodes.c:1.103
Rev: src/operators.c:1.129
Rev: src/svalue.c:1.99
26:
#include "bignum.h"
#include "operators.h"
- RCSID("$Id: opcodes.c,v 1.102 2001/02/23 14:32:18 grubba Exp $");
+ RCSID("$Id: opcodes.c,v 1.103 2001/03/04 19:27:18 mirar Exp $");
void index_no_free(struct svalue *to,struct svalue *what,struct svalue *ind)
{
49: Inside #if defined(AUTO_BIGNUM)
index_no_free(to, what, ind);
if(IS_UNDEFINED(to)) {
if (val) {
- Pike_error("Indexing the integer %d with an unknown method.\n", val);
+ Pike_error("Indexing the integer %"PRINTPIKEINT"d "
+ "with an unknown method.\n", val);
} else {
if(ind->type == T_STRING)
Pike_error("Indexing the NULL value with \"%s\".\n", ind->u.string->str);