diff options
author | Taylor Holberton <taylorcholberton@gmail.com> | 2016-12-01 15:59:17 -0800 |
---|---|---|
committer | Taylor Holberton <taylorcholberton@gmail.com> | 2016-12-01 15:59:17 -0800 |
commit | 319a84845148f562f21d309b294d8ed1b7d86262 (patch) | |
tree | e7a9b37890fbba97f6e6c952380a459f6154267a /utils | |
parent | 2f387d2aa149118bec4c436056fc06d7c2f427c4 (diff) |
Added const specifier to mask
The changed was brought on by to early commits to the PCM API.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/tinypcminfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/tinypcminfo.c b/utils/tinypcminfo.c index 5b8db1f..0dd381d 100644 --- a/utils/tinypcminfo.c +++ b/utils/tinypcminfo.c @@ -129,7 +129,7 @@ int main(int argc, char **argv) for (i = 0; i < 2; i++) { struct pcm_params *params; - struct pcm_mask *m; + const struct pcm_mask *m; unsigned int min; unsigned int max; |