aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-10-20 06:25:23 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-10-20 06:25:23 +0000
commita8fb4194926aa22732192b37768be34aec0c9360 (patch)
tree4cf96546c03fa82ebdbf13dac92d10d35e4b4211 /conf.c
parent62bdd79aa94a2c4624cb662c9ac43f9bf95d5427 (diff)
downloadfetchmail-a8fb4194926aa22732192b37768be34aec0c9360.tar.gz
fetchmail-a8fb4194926aa22732192b37768be34aec0c9360.tar.bz2
fetchmail-a8fb4194926aa22732192b37768be34aec0c9360.zip
-Wall cleanup.
svn path=/trunk/; revision=2120
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/conf.c b/conf.c
index 4a544564..81d6d29d 100644
--- a/conf.c
+++ b/conf.c
@@ -60,8 +60,6 @@ static void indent(char ic)
static void stringdump(const char *name, const char *member)
/* dump a string member with current indent */
{
- static char buf[BUFSIZ];
-
indent('\0');
fprintf(stdout, "\"%s\":", name);
if (member)
@@ -71,14 +69,14 @@ static void stringdump(const char *name, const char *member)
fputs(",\n", stdout);
}
-static int numdump(const char *name, const int num)
+static void numdump(const char *name, const int num)
/* dump a numeric quantity at current indent */
{
indent('\0');
fprintf(stdout, "'%s':%d,\n", name, num);
}
-static int booldump(const char *name, const int onoff)
+static void booldump(const char *name, const int onoff)
/* dump a boolean quantity at current indent */
{
indent('\0');