You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by sc...@apache.org on 2008/12/31 05:34:38 UTC

svn commit: r730307 - /xml/security/trunk/c/configure.ac

Author: scantor
Date: Tue Dec 30 20:34:38 2008
New Revision: 730307

URL: http://svn.apache.org/viewvc?rev=730307&view=rev
Log:
Fix type in BinMemInputStream test.

Modified:
    xml/security/trunk/c/configure.ac

Modified: xml/security/trunk/c/configure.ac
URL: http://svn.apache.org/viewvc/xml/security/trunk/c/configure.ac?rev=730307&r1=730306&r2=730307&view=diff
==============================================================================
--- xml/security/trunk/c/configure.ac (original)
+++ xml/security/trunk/c/configure.ac Tue Dec 30 20:34:38 2008
@@ -458,7 +458,7 @@
 
 AC_TRY_COMPILE([#include <xercesc/util/BinMemInputStream.hpp>],
     [using namespace XERCES_CPP_NAMESPACE;
-      char buf[1024];
+      XMLByte buf[1024];
       BinMemInputStream in(buf,1024);
       in.getContentType();
     ],