mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 03:45:42 +01:00
Changed some remaining size_t's
This commit is contained in:
parent
744c8798c0
commit
be058e4a04
1 changed files with 4 additions and 4 deletions
|
@ -53,10 +53,10 @@
|
||||||
|
|
||||||
/* global data */
|
/* global data */
|
||||||
|
|
||||||
static ssize_t (*readi_func)(snd_pcm_t *handle, void *buffer, size_t size);
|
static snd_pcm_sframes_t (*readi_func)(snd_pcm_t *handle, void *buffer, snd_pcm_uframes_t size);
|
||||||
static ssize_t (*writei_func)(snd_pcm_t *handle, const void *buffer, size_t size);
|
static snd_pcm_sframes_t (*writei_func)(snd_pcm_t *handle, const void *buffer, snd_pcm_uframes_t size);
|
||||||
static ssize_t (*readn_func)(snd_pcm_t *handle, void **bufs, size_t size);
|
static snd_pcm_sframes_t (*readn_func)(snd_pcm_t *handle, void **bufs, snd_pcm_uframes_t size);
|
||||||
static ssize_t (*writen_func)(snd_pcm_t *handle, void **bufs, size_t size);
|
static snd_pcm_sframes_t (*writen_func)(snd_pcm_t *handle, void **bufs, snd_pcm_uframes_t size);
|
||||||
|
|
||||||
static char *command;
|
static char *command;
|
||||||
static snd_pcm_t *handle;
|
static snd_pcm_t *handle;
|
||||||
|
|
Loading…
Reference in a new issue