From be5c2c81971442d623dd1b265dabf4644ceeb35b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 23 Dec 2019 10:56:16 +0100 Subject: sys/linux: fix 32-bit warnings Lots of interesting findings... Especially 2 byte uid/gid/pid. Update #590 --- sys/linux/dev_snd_pcm.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'sys/linux/dev_snd_pcm.txt') diff --git a/sys/linux/dev_snd_pcm.txt b/sys/linux/dev_snd_pcm.txt index 1aff46cb9..6f3cafa55 100644 --- a/sys/linux/dev_snd_pcm.txt +++ b/sys/linux/dev_snd_pcm.txt @@ -114,10 +114,10 @@ snd_pcm_mmap_control { snd_pcm_status32 { state const[0, int32] - trigger_tstamp_sec const[0, intptr] - trigger_tstamp_nsec const[0, intptr] - tstamp_sec const[0, intptr] - tstamp_nsec const[0, intptr] + trigger_tstamp_sec const[0, int32] + trigger_tstamp_nsec const[0, int32] + tstamp_sec const[0, int32] + tstamp_nsec const[0, int32] appl_ptr const[0, intptr] hw_ptr const[0, intptr] delay const[0, intptr] @@ -131,10 +131,10 @@ snd_pcm_status32 { snd_pcm_status64 { state const[0, int32] rsvd const[0, int32] - trigger_tstamp_sec const[0, intptr] - trigger_tstamp_nsec const[0, intptr] - tstamp_sec const[0, intptr] - tstamp_nsec const[0, intptr] + trigger_tstamp_sec const[0, int64] + trigger_tstamp_nsec const[0, int64] + tstamp_sec const[0, int64] + tstamp_nsec const[0, int64] appl_ptr const[0, intptr] hw_ptr const[0, intptr] delay const[0, intptr] -- cgit mrf-deployment