Fix warnings due to improper signedness
This commit was SVN r980.
Этот коммит содержится в:
родитель
1bf36c4663
Коммит
49c3d1e1ec
@ -430,7 +430,8 @@ lam_attr_copy_all(lam_attribute_type_t type, void *old_object,
|
|||||||
void *new_object)
|
void *new_object)
|
||||||
{
|
{
|
||||||
int ret = LAM_SUCCESS;
|
int ret = LAM_SUCCESS;
|
||||||
int key, flag;
|
uint32_t key;
|
||||||
|
int flag;
|
||||||
void *node, *in_node, *old_attr, *new_attr;
|
void *node, *in_node, *old_attr, *new_attr;
|
||||||
lam_attrkey_item_t *hash_value;
|
lam_attrkey_item_t *hash_value;
|
||||||
void *object = old_object; /* For consistent interface to
|
void *object = old_object; /* For consistent interface to
|
||||||
@ -520,7 +521,7 @@ int
|
|||||||
lam_attr_delete_all(lam_attribute_type_t type, void *object)
|
lam_attr_delete_all(lam_attribute_type_t type, void *object)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
int key;
|
uint32_t key;
|
||||||
void *node, *in_node, *old_attr;
|
void *node, *in_node, *old_attr;
|
||||||
lam_attrkey_item_t *hash_value;
|
lam_attrkey_item_t *hash_value;
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user