From 60902b280cc2cef10bc78408ec5fd1433e6b9436 Mon Sep 17 00:00:00 2001 From: lostlogic Date: Thu, 8 Nov 2007 18:59:22 +0000 Subject: [PATCH] No functional change git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15542 a1c6a512-1295-4272-9138-f99709370657 --- apps/buffering.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/buffering.c b/apps/buffering.c index 0a2667369..edfb8e758 100644 --- a/apps/buffering.c +++ b/apps/buffering.c @@ -974,8 +974,8 @@ int bufadvance(int handle_id, off_t offset) * actual amount of data available for reading. This function explicitly * does not check the validity of the input handle. It does do range checks * on size and returns a valid (and explicit) amount of data for reading */ -static struct memory_handle *prep_bufdata(int handle_id, size_t *size, - bool guardbuf_limit) +static struct memory_handle *prep_bufdata(const int handle_id, size_t *size, + const bool guardbuf_limit) { struct memory_handle *h = find_handle(handle_id); if (!h) @@ -1005,7 +1005,7 @@ static struct memory_handle *prep_bufdata(int handle_id, size_t *size, if (h->filerem > 0 && avail < *size) { /* Data isn't ready. Request buffering */ - buf_request_buffer_handle(h->id); + buf_request_buffer_handle(handle_id); /* Wait for the data to be ready */ do { -- 2.11.4.GIT