Branch: Tag:

2000-08-17

2000-08-17 19:10:05 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Fixed a few warnings.

Rev: src/backend.c:1.55
Rev: src/compilation.h:1.19
Rev: src/dynamic_load.c:1.43
Rev: src/encode.c:1.68
Rev: src/gc.c:1.124
Rev: src/interpret.c:1.165
Rev: src/interpret.h:1.64
Rev: src/module_support.c:1.37
Rev: src/modules/Parser/parser.c:1.10
Rev: src/modules/call_out/call_out.c:1.39
Rev: src/modules/spider/xml.c:1.26
Rev: src/modules/sprintf/sprintf.c:1.73
Rev: src/opcodes.c:1.90
Rev: src/operators.c:1.100
Rev: src/pike_types.c:1.136
Rev: src/program.c:1.263

6:   /**/   #include "global.h"   #include <math.h> - RCSID("$Id: operators.c,v 1.99 2000/08/15 11:18:46 grubba Exp $"); + RCSID("$Id: operators.c,v 1.100 2000/08/17 19:07:13 grubba Exp $");   #include "interpret.h"   #include "svalue.h"   #include "multiset.h"
2489:    if(i<0)    i+=THIS->s->len;    if(i<0 || i>=THIS->s->len) -  error("Index %d is out of range 0 - %d.\n", i, THIS->s->len-1); +  error("Index %d is out of range 0 - %ld.\n", +  i, PTRDIFF_T_TO_LONG(THIS->s->len - 1));    else    i=index_shared_string(THIS->s,i);    pop_n_elems(args);