summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-10 08:35:05 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-10 08:35:05 +0000
commit3b2249aea33803aadea3a1167f4052500639db28 (patch)
tree5a2a90a067c8bfbde115b8b5d632a5ea1e15ddce /unoxml
parent0d231a84e4f2fdcca6101ea7119be86361ac5978 (diff)
#i90484# Patch by pjanik for .Net2003 compiler
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/xpath/xpathapi.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/unoxml/source/xpath/xpathapi.cxx b/unoxml/source/xpath/xpathapi.cxx
index c8fb5f990090..4b8fe4224092 100644
--- a/unoxml/source/xpath/xpathapi.cxx
+++ b/unoxml/source/xpath/xpathapi.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: xpathapi.cxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -274,6 +274,9 @@ namespace XPath
va_list args;
va_start(args, format);
+#ifdef _WIN32
+#define vsnprintf _vsnprintf
+#endif
vsnprintf(str, sizeof(str), format, args);
va_end(args);