mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-23 10:40:13 +01:00
Update genobj.c
This commit is contained in:
parent
0cfdaa2081
commit
baccca0628
1 changed files with 3 additions and 3 deletions
|
|
@ -482,7 +482,7 @@ int delete_object(obj_rnum rnum)
|
|||
/* oset handling, this location should be temporary */
|
||||
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);
|
||||
|
||||
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)
|
||||
{
|
||||
static int max_len = 64;
|
||||
static size_t max_len = 64;
|
||||
int i = GET_OBJ_RNUM(obj);
|
||||
|
||||
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)
|
||||
{
|
||||
static int max_len = 128;
|
||||
static size_t max_len = 128;
|
||||
int i = GET_OBJ_RNUM(obj);
|
||||
|
||||
skip_spaces(&argument);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue