ARM unwinder: Add missing va_end() call.

Detected by cppcheck, patch submitted upstream.

Change-Id: Ieeec9d2e7e2c22d64c94936958f5a4ff02d3548b
This commit is contained in:
Thomas Jarosch 2015-01-12 19:10:24 +01:00
parent 8d0bdc7dec
commit 1589b28afc

View file

@ -64,6 +64,7 @@ void UnwPrintf(const char *format, ...)
va_start( args, format );
vprintf(format, args );
va_end(args);
}
#endif