Removed warning for const removal.

This commit is contained in:
Joel Sherrill
1999-03-30 17:42:25 +00:00
parent 5c6c4c24d9
commit 707d4d00d6
3 changed files with 3 additions and 3 deletions

View File

@@ -59,6 +59,6 @@ int rtems_bsdnet_makeFdForSocket(
iop->flags |= LIBIO_FLAGS_WRITE | LIBIO_FLAGS_READ; iop->flags |= LIBIO_FLAGS_WRITE | LIBIO_FLAGS_READ;
iop->data0 = fd; iop->data0 = fd;
iop->data1 = so; iop->data1 = so;
iop->handlers = h; iop->handlers = (rtems_filesystem_file_handlers_r *) h;
return fd; return fd;
} }

View File

@@ -59,6 +59,6 @@ int rtems_bsdnet_makeFdForSocket(
iop->flags |= LIBIO_FLAGS_WRITE | LIBIO_FLAGS_READ; iop->flags |= LIBIO_FLAGS_WRITE | LIBIO_FLAGS_READ;
iop->data0 = fd; iop->data0 = fd;
iop->data1 = so; iop->data1 = so;
iop->handlers = h; iop->handlers = (rtems_filesystem_file_handlers_r *) h;
return fd; return fd;
} }

View File

@@ -59,6 +59,6 @@ int rtems_bsdnet_makeFdForSocket(
iop->flags |= LIBIO_FLAGS_WRITE | LIBIO_FLAGS_READ; iop->flags |= LIBIO_FLAGS_WRITE | LIBIO_FLAGS_READ;
iop->data0 = fd; iop->data0 = fd;
iop->data1 = so; iop->data1 = so;
iop->handlers = h; iop->handlers = (rtems_filesystem_file_handlers_r *) h;
return fd; return fd;
} }