2003-01-17
2003-01-17 13:10:01 by Johan Sundström <oyasumi@gmail.com>
-
ecdbac7724e8000e73112b2208e18211b2364305
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 7.9
Applied mast's warning fix from 7.4. :-)
Rev: src/pike_types.c:1.204
2:
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
- || $Id: pike_types.c,v 1.203 2003/01/07 20:11:56 grubba Exp $
+ || $Id: pike_types.c,v 1.204 2003/01/17 13:10:01 jhs Exp $
*/
#include "global.h"
- RCSID("$Id: pike_types.c,v 1.203 2003/01/07 20:11:56 grubba Exp $");
+ RCSID("$Id: pike_types.c,v 1.204 2003/01/17 13:10:01 jhs Exp $");
#include <ctype.h>
#include "svalue.h"
#include "pike_types.h"
554: Inside #if defined(PIKE_DEBUG)
marker -= '0';
#ifdef PIKE_DEBUG
if ((marker < 0) || (marker > 9)) {
- Pike_fatal("Bad assign marker: %ld\n", marker);
+ Pike_fatal("Bad assign marker: %d\n", marker);
}
#endif /* PIKE_DEBUG */