ossp-pkg/sio/sio_null.c 1.6 -> 1.7
--- sio_null.c 2002/11/24 19:36:48 1.6
+++ sio_null.c 2002/11/27 15:50:29 1.7
@@ -16,7 +16,7 @@
* allocate private instance data
*/
static
-sio_rc_t null_init(sio_t *sio, void **u)
+sio_rc_t null_init(sio_t *sio, void **up)
{
private_t *my;
@@ -28,7 +28,7 @@
my->b = 42.0;
my->c = "42";
- *u = my;
+ *up = my;
return SIO_OK;
}
|
|