From: Abramo Bagnara Date: Thu, 24 Aug 2000 17:58:14 +0000 (+0000) Subject: Fixed typo X-Git-Tag: v1.0.3~1170 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=4740b37b3769b1762d25e568bda44069a5c78c0a;p=alsa-lib.git Fixed typo --- diff --git a/src/conf/conf.c b/src/conf/conf.c index ec277ac0..ba583ff7 100644 --- a/src/conf/conf.c +++ b/src/conf/conf.c @@ -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);