Update genobj.c

This commit is contained in:
Rumble 2014-05-03 19:51:14 -04:00
parent 0cfdaa2081
commit baccca0628

View file

@ -482,7 +482,7 @@ int delete_object(obj_rnum rnum)
/* oset handling, this location should be temporary */ /* oset handling, this location should be temporary */
bool oset_alias(struct obj_data *obj, char * argument) bool oset_alias(struct obj_data *obj, char * argument)
{ {
static int max_len = 64; static size_t max_len = 64;
int i = GET_OBJ_RNUM(obj); int i = GET_OBJ_RNUM(obj);
skip_spaces(&argument); skip_spaces(&argument);
@ -553,7 +553,7 @@ bool oset_apply(struct obj_data *obj, char * argument)
bool oset_short_description(struct obj_data *obj, char * argument) bool oset_short_description(struct obj_data *obj, char * argument)
{ {
static int max_len = 64; static size_t max_len = 64;
int i = GET_OBJ_RNUM(obj); int i = GET_OBJ_RNUM(obj);
skip_spaces(&argument); skip_spaces(&argument);
@ -571,7 +571,7 @@ bool oset_short_description(struct obj_data *obj, char * argument)
bool oset_long_description(struct obj_data *obj, char * argument) bool oset_long_description(struct obj_data *obj, char * argument)
{ {
static int max_len = 128; static size_t max_len = 128;
int i = GET_OBJ_RNUM(obj); int i = GET_OBJ_RNUM(obj);
skip_spaces(&argument); skip_spaces(&argument);