You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by yd...@apache.org on 2012/02/16 17:20:16 UTC

svn commit: r1245063 - /incubator/ooo/trunk/main/shell/inc/internal/utilities.hxx

Author: ydario
Date: Thu Feb 16 16:20:16 2012
New Revision: 1245063

URL: http://svn.apache.org/viewvc?rev=1245063&view=rev
Log:
i118923 - OS/2 port: minor build fix.

Modified:
    incubator/ooo/trunk/main/shell/inc/internal/utilities.hxx

Modified: incubator/ooo/trunk/main/shell/inc/internal/utilities.hxx
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/shell/inc/internal/utilities.hxx?rev=1245063&r1=1245062&r2=1245063&view=diff
==============================================================================
--- incubator/ooo/trunk/main/shell/inc/internal/utilities.hxx (original)
+++ incubator/ooo/trunk/main/shell/inc/internal/utilities.hxx Thu Feb 16 16:20:16 2012
@@ -100,10 +100,10 @@ typedef const   char            *LPCSTR;
 #ifdef DEBUG
 inline void OutputDebugStringFormat( LPCSTR pFormat, ... )
 {
+#ifndef OS2
 	CHAR    buffer[1024];
 	va_list args;
 
-#ifndef OS2
 	va_start( args, pFormat );
 	StringCchVPrintfA( buffer, sizeof(buffer), pFormat, args );
 	OutputDebugStringA( buffer );