aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/debug.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2009-12-24 11:14:03 +0100
committerHarald Welte <laforge@netfilter.org>2009-12-24 11:14:03 +0100
commit7ed2529c5b67548cefdb1f5a997b5aca54cebbed (patch)
treeb88e567f7359e1bd8bf394fd63cf368673263eba /openbsc/src/debug.c
parentaa8989c4d538b19fd0890a1afbdda42a5f311752 (diff)
debug: add missing va_end()
Diffstat (limited to 'openbsc/src/debug.c')
-rw-r--r--openbsc/src/debug.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/openbsc/src/debug.c b/openbsc/src/debug.c
index 15271fe72..8b0f25eb5 100644
--- a/openbsc/src/debug.c
+++ b/openbsc/src/debug.c
@@ -231,6 +231,7 @@ static void _debugp(unsigned int subsys, int level, char *file, int line,
va_list bp;
va_copy(bp, ap);
_output(tar, subsys, file, line, cont, format, bp);
+ va_end(bp);
}
}
}