summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2014-08-08 11:48:57 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2014-08-08 21:48:28 +0900
commite395aa09a49cd4adbcc4d9c64eecc76d08f47d40 (patch)
tree36f16db7bd2b5037612807107afb529b89f1471e
parent4c0eb74307b613aefce4b181817cf137c4517c8a (diff)
match va_start() with va_end()
Change-Id: I5c3c2570d6311f49da95bb80c0f9850f89970235
-rw-r--r--shell/inc/internal/utilities.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/inc/internal/utilities.hxx b/shell/inc/internal/utilities.hxx
index b11c9aa7d313..ccd537bec1f7 100644
--- a/shell/inc/internal/utilities.hxx
+++ b/shell/inc/internal/utilities.hxx
@@ -120,6 +120,7 @@ inline void OutputDebugStringFormat( LPCSTR pFormat, ... )
va_start( args, pFormat );
StringCchVPrintfA( buffer, sizeof(buffer), pFormat, args );
+ va_end( args );
OutputDebugStringA( buffer );
}
#else