2002-12-12
2002-12-12 17:17:08 by Martin Nilsson <mani@lysator.liu.se>
-
a1fd4525de77ba051e7cbd13bf432492b7282b71
(9 lines)
(+5/-4)
[
Show
| Annotate
]
Branch: 7.9
Possibly a better error message in a Pike_fatal. Extremly slight optimization: There are now only 250 constants by default.
Rev: src/constants.c:1.45
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: constants.c,v 1.44 2002/11/24 22:47:06 mast Exp $
+ || $Id: constants.c,v 1.45 2002/12/12 17:17:08 nilsson Exp $
*/
#include "global.h"
18:
#include "security.h"
#include "block_alloc.h"
- RCSID("$Id: constants.c,v 1.44 2002/11/24 22:47:06 mast Exp $");
+ RCSID("$Id: constants.c,v 1.45 2002/12/12 17:17:08 nilsson Exp $");
struct mapping *builtin_constants = 0;
92: Inside #if defined(PIKE_DEBUG)
{
struct pike_type *z = check_call(function_type_string, type, 0);
f->may_return_void = (z == void_type_string);
- if(!z) Pike_fatal("Gnapp!\n");
+ if(!z) Pike_fatal("Function has no valid return type.\n");
free_type(z);
}
f->runs=0;
185:
void init_builtin_constants(void)
{
- builtin_constants = allocate_mapping(252);
+ builtin_constants = allocate_mapping(250);
}
void cleanup_added_efuns(void)