2000-09-07
2000-09-07 11:35:17 by Henrik Grubbström (Grubba) <grubba@grubba.org>
-
d1cac51a093d5fe53678ba5b9ea31e34a06c6ef9
(11 lines)
(+7/-4)
[
Show
| Annotate
]
Branch: 7.9
Fixed a few warnings.
Rev: src/builtin_functions.c:1.311
Rev: src/interpret.c:1.169
Rev: src/mapping.c:1.100
Rev: src/modules/_Image_TIFF/image_tiff.c:1.21
Rev: src/pike_types.h:1.45
5:
\*/
/**/
#include "global.h"
- RCSID("$Id: builtin_functions.c,v 1.310 2000/09/03 23:21:13 mast Exp $");
+ RCSID("$Id: builtin_functions.c,v 1.311 2000/09/07 11:35:17 grubba Exp $");
#include "interpret.h"
#include "svalue.h"
#include "pike_macros.h"
1069: Inside #if defined(PIKE_DEBUG)
if (d_flag) {
for(i = len; i--;) {
if (out->str[i]) {
- fatal("MEMSET didn't clear byte %d of %d\n", i+1, len);
+ fatal("MEMSET didn't clear byte %ld of %ld\n",
+ PTRDIFF_T_TO_LONG(i+1),
+ PTRDIFF_T_TO_LONG(len));
}
}
}
1252:
/* 32bit or more. */
if (!extended) {
error("string_to_utf8(): "
- "Value 0x%08x (index %d) is larger than 31 bits.\n",
- c, i);
+ "Value 0x%08x (index %ld) is larger than 31 bits.\n",
+ c, PTRDIFF_T_TO_LONG(i));
}
len++;
/* FIXME: Needs fixing when we get 64bit chars... */