Skip to content

Commit

Permalink
aumix_debug: use const
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh committed Jun 13, 2024
1 parent 82a5f90 commit 38965a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/rem_aumix.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ int aumix_source_put(struct aumix_source *src, const int16_t *sampv,
size_t sampc);
void aumix_source_readh(struct aumix_source *src, aumix_read_h *readh);
void aumix_source_flush(struct aumix_source *src);
int aumix_debug(struct re_printf *pf, struct aumix *mix);
int aumix_debug(struct re_printf *pf, const struct aumix *mix);
2 changes: 1 addition & 1 deletion rem/aumix/aumix.c
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ void aumix_source_flush(struct aumix_source *src)
*
* @return 0 if success, otherwise errorcode
*/
int aumix_debug(struct re_printf *pf, struct aumix *mix)
int aumix_debug(struct re_printf *pf, const struct aumix *mix)
{
struct le *le;
int err = 0;
Expand Down

0 comments on commit 38965a6

Please sign in to comment.