mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Fixed typo
This commit is contained in:
parent
244653df61
commit
4740b37b37
1 changed files with 2 additions and 2 deletions
|
|
@ -783,10 +783,10 @@ static int _snd_config_save_leaf(snd_config_t *n, FILE *fp,
|
|||
unsigned int k;
|
||||
switch (n->type) {
|
||||
case SND_CONFIG_TYPE_INTEGER:
|
||||
printf("%ld", n->u.integer);
|
||||
fprintf(fp, "%ld", n->u.integer);
|
||||
break;
|
||||
case SND_CONFIG_TYPE_REAL:
|
||||
printf("%16g", n->u.real);
|
||||
fprintf(fp, "%16g", n->u.real);
|
||||
break;
|
||||
case SND_CONFIG_TYPE_STRING:
|
||||
quoted_print(n->u.string, fp);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue