Daniel Shahaf wrote:
> Has anyone (javahl people) looked at Jens' patch? It's a one-line change.
Thank you for your reply. Attached to this mail is a better log message
since I forgot the first part of it in my initial message :(
[[[
Fix a compile error when building javahl with nls support for Windows x64.
* subversion/bindings/javahl/native/JNIUtil.cpp
(JNIUtil::JNIGlobalInit)
Change the type of 'inwords' and 'outbytes' to apr_size_t.
Patch by: jpeters7677_at_gmx.de
]]]
Index: subversion/bindings/javahl/native/JNIUtil.cpp
===================================================================
--- subversion/bindings/javahl/native/JNIUtil.cpp (revision 31618)
+++ subversion/bindings/javahl/native/JNIUtil.cpp (working copy)
@@ -183,7 +183,8 @@
const char *internal_path;
apr_pool_t *pool;
apr_status_t apr_err;
- unsigned int inwords, outbytes, outlength;
+ apr_size_t inwords, outbytes;
+ unsigned int outlength;
apr_pool_create(&pool, 0);
/* get dll name - our locale info will be in '../share/locale' */
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-06-14 17:35:27 CEST