ossp-pkg/sio/sio_bio.c 1.4 -> 1.5
--- sio_bio.c 2002/11/24 19:40:59 1.4
+++ sio_bio.c 2002/11/27 15:50:29 1.5
@@ -189,7 +189,7 @@
* allocate private instance data
*/
static
-sio_rc_t siobio_init(sio_t *sio, void **u)
+sio_rc_t siobio_init(sio_t *sio, void **up)
{
private_t *my;
@@ -208,7 +208,7 @@
sio_label(sio, SIO_LN_EOF, &my->eof_label);
sio_label(sio, SIO_LN_ERROR, &my->error_label);
- *u = my;
+ *up = my;
return SIO_OK;
}
|
|