Author: mturk Date: Sat Apr 25 13:09:16 2009 New Revision: 768525 URL: http://svn.apache.org/viewvc?rev=768525&view=rev Log: Fix conversion warnings
Modified: commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c Modified: commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c?rev=768525&r1=768524&r2=768525&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c (original) +++ commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c Sat Apr 25 13:09:16 2009 @@ -183,7 +183,7 @@ { UNREFERENCED_STDARGS; - *(N2P(a, char *)) = v; + *(N2P(a, char *)) = (char)v; } ACR_PTR_EXPORT_DECLARE(void, copy0)(ACR_JNISTDARGS, jniptr s,