[jbossnative-commits] JBoss Native SVN: r1002 - trunk/sight/native/share.

jbossnative-commits at lists.jboss.org jbossnative-commits at lists.jboss.org
Mon Sep 10 02:41:08 EDT 2007


Author: mladen.turk at jboss.com
Date: 2007-09-10 02:41:08 -0400 (Mon, 10 Sep 2007)
New Revision: 1002

Modified:
   trunk/sight/native/share/tcpconn.c
   trunk/sight/native/share/udpconn.c
Log:
Use correct field types

Modified: trunk/sight/native/share/tcpconn.c
===================================================================
--- trunk/sight/native/share/tcpconn.c	2007-09-10 06:37:05 UTC (rev 1001)
+++ trunk/sight/native/share/tcpconn.c	2007-09-10 06:41:08 UTC (rev 1002)
@@ -140,7 +140,7 @@
 
 void sight_tcpconn_set_tmo(SIGHT_STDARGS, jint val)
 {
-    SET_IFIELD_J(0004, _O, val);
+    SET_IFIELD_I(0004, _O, val);
 }
 
 void sight_tcpconn_set_state(SIGHT_STDARGS, jint val)

Modified: trunk/sight/native/share/udpconn.c
===================================================================
--- trunk/sight/native/share/udpconn.c	2007-09-10 06:37:05 UTC (rev 1001)
+++ trunk/sight/native/share/udpconn.c	2007-09-10 06:41:08 UTC (rev 1002)
@@ -140,7 +140,7 @@
 
 void sight_udpconn_set_tmo(SIGHT_STDARGS, jlong val)
 {
-    SET_IFIELD_J(0004, _O, val);
+    SET_IFIELD_I(0004, _O, val);
 }
 
 void sight_udpconn_set_state(SIGHT_STDARGS, jint val)




More information about the jbossnative-commits mailing list