1997-04-15
1997-04-15 03:50:10 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
-
1f64357c2aa3c876ef804cd373ac033b00af5c20
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 7.9
two minor warnings removed
Rev: src/program.c:1.32
4:
||| See the files COPYING and DISCLAIMER for more information.
\*/
#include "global.h"
- RCSID("$Id: program.c,v 1.31 1997/04/10 12:00:27 hubbe Exp $");
+ RCSID("$Id: program.c,v 1.32 1997/04/15 03:50:10 hubbe Exp $");
#include "program.h"
#include "object.h"
#include "dynamic_buffer.h"
1591: Inside #if defined(DEBUG) and #if defined(FIND_FUNCTION_HASHSIZE)
{
check_string(cache[e].name);
if(cache[e].id<0 || cache[e].id > current_program_id)
- fatal("Error in find_function_cache[%d].id\n",e);
+ fatal("Error in find_function_cache[%ld].id\n",(long)e);
if(cache[e].fun < -1 || cache[e].fun > 65536)
- fatal("Error in find_function_cache[%d].fun\n",e);
+ fatal("Error in find_function_cache[%ld].fun\n",(long)e);
}
}
}