summaryrefslogtreecommitdiff
path: root/src/factor.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-12-12 08:10:07 +0100
committerJim Meyering <meyering@redhat.com>2009-12-12 08:10:07 +0100
commit96047b77ecf41a9b6e28d50b4cbbdb543f4249d9 (patch)
treeb81b070337d449372a8aa5cdd375b18ddddd6a71 /src/factor.c
parent5a514de955684edeb8b8fc27c9338204dd640109 (diff)
downloadcoreutils-96047b77ecf41a9b6e28d50b4cbbdb543f4249d9.tar.xz
factor: add a missing va_end
* src/factor.c (debug): Add missing va_end.
Diffstat (limited to 'src/factor.c')
-rw-r--r--src/factor.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/factor.c b/src/factor.c
index 38c9a115b..cf1868ce2 100644
--- a/src/factor.c
+++ b/src/factor.c
@@ -60,6 +60,7 @@ debug (char const *fmt, ...)
va_list ap;
va_start (ap, fmt);
vfprintf (stderr, fmt, ap);
+ va_end (ap);
}
}