mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
hdspmixer: Use __u32 and __u64 for RMS array types
Some variable types are referring to the field in ioctl struct, which are actually __u32 or __u64 instead of uint32_t or uint64_t. This inconsistency may result in the compile error. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
9ed2ebaaa7
commit
534e7fac80
1 changed files with 2 additions and 2 deletions
|
|
@ -35,8 +35,8 @@ static void readregisters_cb(void *arg)
|
|||
hdsp_peak_rms_t hdsp_peak_rms;
|
||||
struct hdspm_peak_rms hdspm_peak_rms;
|
||||
bool isMADI = false;
|
||||
uint32_t *input_peaks, *playback_peaks, *output_peaks;
|
||||
uint64_t *input_rms, *playback_rms, *output_rms;
|
||||
__u32 *input_peaks, *playback_peaks, *output_peaks;
|
||||
__u64 *input_rms, *playback_rms, *output_rms;
|
||||
|
||||
HDSPMixerWindow *w = (HDSPMixerWindow *)arg;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue