mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-31 22:25:35 -04:00
Art Haas <ahaas@airmail.net>
C99 initializers cleanup
This commit is contained in:
parent
b3e3c349ce
commit
6a543d8e20
1 changed files with 6 additions and 6 deletions
|
|
@ -518,9 +518,9 @@ static int pcm_shm_cmd(client_t *client)
|
||||||
}
|
}
|
||||||
|
|
||||||
transport_ops_t pcm_shm_ops = {
|
transport_ops_t pcm_shm_ops = {
|
||||||
open: pcm_shm_open,
|
.open = pcm_shm_open,
|
||||||
cmd: pcm_shm_cmd,
|
.cmd = pcm_shm_cmd,
|
||||||
close: pcm_shm_close,
|
.close = pcm_shm_close,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int ctl_handler(waiter_t *waiter, unsigned short events)
|
static int ctl_handler(waiter_t *waiter, unsigned short events)
|
||||||
|
|
@ -712,9 +712,9 @@ static int ctl_shm_cmd(client_t *client)
|
||||||
}
|
}
|
||||||
|
|
||||||
transport_ops_t ctl_shm_ops = {
|
transport_ops_t ctl_shm_ops = {
|
||||||
open: ctl_shm_open,
|
.open = ctl_shm_open,
|
||||||
cmd: ctl_shm_cmd,
|
.cmd = ctl_shm_cmd,
|
||||||
close: ctl_shm_close,
|
.close = ctl_shm_close,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int snd_client_open(client_t *client)
|
static int snd_client_open(client_t *client)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue