mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-03 09:01:52 -05:00
Fixed typos
This commit is contained in:
parent
6a3b962d06
commit
aa7df159e1
1 changed files with 10 additions and 10 deletions
18
src/conf.c
18
src/conf.c
|
|
@ -765,13 +765,13 @@ const char *snd_config_get_id(snd_config_t *config)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Build a top level config node
|
* \brief Build a top level config node
|
||||||
* \param configp Returned config node handle pointer
|
* \param config Returned config node handle pointer
|
||||||
* \return 0 on success otherwise a negative error code
|
* \return 0 on success otherwise a negative error code
|
||||||
*/
|
*/
|
||||||
int snd_config_top(snd_config_t **configp)
|
int snd_config_top(snd_config_t **config)
|
||||||
{
|
{
|
||||||
assert(configp);
|
assert(config);
|
||||||
return _snd_config_make(configp, 0, SND_CONFIG_TYPE_COMPOUND);
|
return _snd_config_make(config, 0, SND_CONFIG_TYPE_COMPOUND);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -899,7 +899,7 @@ int snd_config_delete(snd_config_t *config)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Build a config node
|
* \brief Build a config node
|
||||||
* \param configp Returned config node handle pointer
|
* \param config Returned config node handle pointer
|
||||||
* \param id Node id
|
* \param id Node id
|
||||||
* \param type Node type
|
* \param type Node type
|
||||||
* \return 0 on success otherwise a negative error code
|
* \return 0 on success otherwise a negative error code
|
||||||
|
|
@ -920,7 +920,7 @@ int snd_config_make(snd_config_t **config, const char *id,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Build an integer config node
|
* \brief Build an integer config node
|
||||||
* \param configp Returned config node handle pointer
|
* \param config Returned config node handle pointer
|
||||||
* \param id Node id
|
* \param id Node id
|
||||||
* \return 0 on success otherwise a negative error code
|
* \return 0 on success otherwise a negative error code
|
||||||
*/
|
*/
|
||||||
|
|
@ -931,7 +931,7 @@ int snd_config_make_integer(snd_config_t **config, const char *id)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Build a real config node
|
* \brief Build a real config node
|
||||||
* \param configp Returned config node handle pointer
|
* \param config Returned config node handle pointer
|
||||||
* \param id Node id
|
* \param id Node id
|
||||||
* \return 0 on success otherwise a negative error code
|
* \return 0 on success otherwise a negative error code
|
||||||
*/
|
*/
|
||||||
|
|
@ -942,7 +942,7 @@ int snd_config_make_real(snd_config_t **config, const char *id)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Build a string config node
|
* \brief Build a string config node
|
||||||
* \param configp Returned config node handle pointer
|
* \param config Returned config node handle pointer
|
||||||
* \param id Node id
|
* \param id Node id
|
||||||
* \return 0 on success otherwise a negative error code
|
* \return 0 on success otherwise a negative error code
|
||||||
*/
|
*/
|
||||||
|
|
@ -953,7 +953,7 @@ int snd_config_make_string(snd_config_t **config, const char *id)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Build an empty compound config node
|
* \brief Build an empty compound config node
|
||||||
* \param configp Returned config node handle pointer
|
* \param config Returned config node handle pointer
|
||||||
* \param id Node id
|
* \param id Node id
|
||||||
* \param join Join flag (checked in snd_config_save to change look)
|
* \param join Join flag (checked in snd_config_save to change look)
|
||||||
* \return 0 on success otherwise a negative error code
|
* \return 0 on success otherwise a negative error code
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue