diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-12-23 10:56:16 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-12-23 10:56:16 +0100 |
| commit | be5c2c81971442d623dd1b265dabf4644ceeb35b (patch) | |
| tree | fad1221fea5137be300e92a8475d92d8e1b47200 /sys/linux/dev_snd_pcm.txt | |
| parent | 4b042b7d6708cae4cb29fa41b89deea14b2eea32 (diff) | |
sys/linux: fix 32-bit warnings
Lots of interesting findings...
Especially 2 byte uid/gid/pid.
Update #590
Diffstat (limited to 'sys/linux/dev_snd_pcm.txt')
| -rw-r--r-- | sys/linux/dev_snd_pcm.txt | 16 |
1 files changed, 8 insertions, 8 deletions
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] |
