mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-02 09:01:48 -05:00
Fix compile warning
Fixed a compile warning with printf and size types.
This commit is contained in:
parent
71ee169307
commit
9501520606
1 changed files with 6 additions and 6 deletions
|
|
@ -2928,9 +2928,9 @@ static struct alisp_object * F_stat_memory(struct alisp_instance *instance, stru
|
|||
instance->used_objs,
|
||||
instance->free_objs,
|
||||
instance->max_objs,
|
||||
sizeof(struct alisp_object),
|
||||
(instance->used_objs + instance->free_objs) * sizeof(struct alisp_object),
|
||||
instance->max_objs * sizeof(struct alisp_object));
|
||||
(int)sizeof(struct alisp_object),
|
||||
(long)((instance->used_objs + instance->free_objs) * sizeof(struct alisp_object)),
|
||||
(long)(instance->max_objs * sizeof(struct alisp_object)));
|
||||
delete_tree(instance, args);
|
||||
return &alsa_lisp_nil;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue