From 4740b37b3769b1762d25e568bda44069a5c78c0a Mon Sep 17 00:00:00 2001 From: Abramo Bagnara Date: Thu, 24 Aug 2000 17:58:14 +0000 Subject: [PATCH] Fixed typo --- src/conf/conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.47.1