Check-in Number:
|
2908 | |
Date: |
2002-Nov-27 16:50:29 (local)
2002-Nov-27 15:50:29 (UTC) |
User: | mlelstv |
Branch: | |
Comment: |
code cleanup
PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from: |
Tickets: |
|
Inspections: |
|
Files: |
|
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;
}
|
|
ossp-pkg/sio/sio_buffer.c 1.6 -> 1.7
--- sio_buffer.c 2002/11/27 10:42:36 1.6
+++ sio_buffer.c 2002/11/27 15:50:29 1.7
@@ -18,7 +18,7 @@
* allocate private instance data
*/
static
-sio_rc_t buffer_init(sio_t *sio, void **u)
+sio_rc_t buffer_init(sio_t *sio, void **up)
{
private_t *my;
@@ -31,7 +31,7 @@
sio_label(sio, SIO_LN_DATA, &my->data_label);
- *u = my;
+ *up = my;
return SIO_OK;
}
|
|
ossp-pkg/sio/sio_fd.c 1.9 -> 1.10
--- sio_fd.c 2002/11/24 19:36:48 1.9
+++ sio_fd.c 2002/11/27 15:50:29 1.10
@@ -29,7 +29,7 @@
* allocate private instance data
*/
static
-sio_rc_t fd_init(sio_t *sio, void **u)
+sio_rc_t fd_init(sio_t *sio, void **up)
{
private_t *my;
@@ -49,7 +49,7 @@
my->eof = '\0';
my->error = '\0';
- *u = my;
+ *up = my;
return SIO_OK;
}
|
|
ossp-pkg/sio/sio_hello.c 1.9 -> 1.10
--- sio_hello.c 2002/11/24 19:36:48 1.9
+++ sio_hello.c 2002/11/27 15:50:29 1.10
@@ -44,7 +44,7 @@
* allocate private instance data
*/
static
-sio_rc_t hello_init(sio_t *sio, void **u)
+sio_rc_t hello_init(sio_t *sio, void **up)
{
private_t *my;
@@ -59,7 +59,7 @@
my->pre_in = NULL;
my->pre_out = NULL;
- *u = my;
+ *up = my;
return SIO_OK;
}
|
|
ossp-pkg/sio/sio_hole.c 1.5 -> 1.6
--- sio_hole.c 2002/11/24 19:36:48 1.5
+++ sio_hole.c 2002/11/27 15:50:29 1.6
@@ -14,7 +14,7 @@
* allocate private instance data
*/
static
-sio_rc_t hole_init(sio_t *sio, void **u)
+sio_rc_t hole_init(sio_t *sio, void **up)
{
private_t *my;
@@ -22,7 +22,7 @@
if (my == NULL)
return SIO_ERR_MEM;
- *u = my;
+ *up = my;
return SIO_OK;
}
|
|
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;
}
|
|
ossp-pkg/sio/sio_sa.c 1.4 -> 1.5
--- sio_sa.c 2002/11/24 19:36:48 1.4
+++ sio_sa.c 2002/11/27 15:50:29 1.5
@@ -32,7 +32,7 @@
* allocate private instance data
*/
static
-sio_rc_t saw_init(sio_t *sio, void **u)
+sio_rc_t saw_init(sio_t *sio, void **up)
{
private_t *my;
@@ -52,7 +52,7 @@
my->eof = '\0';
my->error = '\0';
- *u = my;
+ *up = my;
return SIO_OK;
}
|
|