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

5:   \*/   /**/   #include "global.h" - RCSID("$Id: program.c,v 1.262 2000/08/16 10:25:52 grubba Exp $"); + RCSID("$Id: program.c,v 1.263 2000/08/17 19:08:11 grubba Exp $");   #include "program.h"   #include "object.h"   #include "dynamic_buffer.h"
1200: Inside #if defined(PIKE_DEBUG)
   if( (p->identifiers[e].func.offset /* + OFFSETOF(object,storage)*/ ) &    (alignof_variable(p->identifiers[e].run_time_type)-1))    { -  fatal("Variable %s offset is not properly aligned (%d).\n",p->identifiers[e].name->str,p->identifiers[e].func.offset); +  fatal("Variable %s offset is not properly aligned (%ld).\n", +  p->identifiers[e].name->str, +  PTRDIFF_T_TO_LONG(p->identifiers[e].func.offset));    }    }    }