From 8142294dda12d5fd7615eed7986ad0d276793c03 Mon Sep 17 00:00:00 2001 From: Richard Knutsson Date: Sat, 24 Nov 2007 22:22:19 +0100 Subject: [MIPS] Compliment va_start() with va_end(). Signed-off-by: Richard Knutsson Signed-off-by: Ralf Baechle --- arch/mips/math-emu/ieee754dp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/mips/math-emu/ieee754dp.c') diff --git a/arch/mips/math-emu/ieee754dp.c b/arch/mips/math-emu/ieee754dp.c index 3e214aa..6d2d89f 100644 --- a/arch/mips/math-emu/ieee754dp.c +++ b/arch/mips/math-emu/ieee754dp.c @@ -57,6 +57,7 @@ ieee754dp ieee754dp_xcpt(ieee754dp r, const char *op, ...) ax.rv.dp = r; va_start(ax.ap, op); ieee754_xcpt(&ax); + va_end(ax.ap); return ax.rv.dp; } @@ -83,6 +84,7 @@ ieee754dp ieee754dp_nanxcpt(ieee754dp r, const char *op, ...) ax.rv.dp = r; va_start(ax.ap, op); ieee754_xcpt(&ax); + va_end(ax.ap); return ax.rv.dp; } -- cgit v1.1