diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2018-12-03 01:42:01 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2018-12-03 01:42:01 +0200 |
commit | fe6274e9e0c0cf101b7afff38744dfa791cdb098 (patch) | |
tree | 41a8f5f5546ee73d36acf07ffd4333162ab99a3d | |
parent | cd27175a4ab621b84cf099fed1369d1d74b71f4d (diff) |
pcm: should use sizeof(round)
-rw-r--r-- | src/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1156,7 +1156,7 @@ snd_pcm_hw_params_set_periods_near(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, WARNX("%u", *val); unsigned int round = params->par.appbufsz / *val; assert(sizeof(params->par.round) == sizeof(round)); - const int ret = update(pcm, ¶ms->par, ¶ms->par.round, &round, sizeof(*val)); + const int ret = update(pcm, ¶ms->par, ¶ms->par.round, &round, sizeof(round)); *val = params->par.appbufsz / params->par.round; return ret; } |