diff options
Diffstat (limited to 'rt/aio_misc.c')
-rw-r--r-- | rt/aio_misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/aio_misc.c b/rt/aio_misc.c index 6ea30c2158..cdfb63d28c 100644 --- a/rt/aio_misc.c +++ b/rt/aio_misc.c @@ -144,7 +144,7 @@ get_elem (void) void -__aio_free_req (struct requestlist *elem) +__aio_free_request (struct requestlist *elem) { elem->running = no; elem->next_prio = freelist; @@ -375,7 +375,7 @@ __aio_enqueue_request (aiocb_union *aiocbp, int operation) else { /* Something went wrong. */ - __aio_free_req (newp); + __aio_free_request (newp); newp = NULL; } @@ -486,7 +486,7 @@ handle_fildes_io (void *arg) } /* Free the old element. */ - __aio_free_req (runp); + __aio_free_request (runp); runp = freelist; if (runp != NULL) |