summaryrefslogtreecommitdiffstats
path: root/apps/buffering.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-06-29 22:18:17 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-06-29 22:29:03 -0400
commit89b05af4967806fb75411a8ccb122f299f79cf52 (patch)
tree4b3f75a79683d8183f8195994d1aa9446027e435 /apps/buffering.c
parent59abdb5190f4f1e4d1f4e0806803bfbc463528c4 (diff)
downloadrockbox-89b05af4967806fb75411a8ccb122f299f79cf52.tar.gz
rockbox-89b05af4967806fb75411a8ccb122f299f79cf52.zip
Fix whitespace
Change-Id: I2072c355f05b6e709a5c179512bc2b71756163a5
Diffstat (limited to 'apps/buffering.c')
-rw-r--r--apps/buffering.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/buffering.c b/apps/buffering.c
index b5bf427079..c4a96e8341 100644
--- a/apps/buffering.c
+++ b/apps/buffering.c
@@ -201,7 +201,7 @@ static inline uintptr_t ringbuf_sub(uintptr_t p, size_t v)
uintptr_t res = p;
if (p < v)
res += buffer_len; /* wrap */
-
+
return res - v;
}
@@ -1118,7 +1118,7 @@ int bufalloc(const void *src, size_t size, enum data_type type)
memcpy(&buffer[buf_widx], src, size);
}
}
-
+
h->fd = -1;
*h->path = 0;
h->filesize = size;
@@ -1173,7 +1173,7 @@ static void rebuffer_handle(int handle_id, size_t newpos)
h->ridx = ringbuf_add(h->data, amount);
if (buffer_handle(handle_id, amount + 1)) {
- size_t rd = ringbuf_sub(h->ridx, h->data);
+ size_t rd = ringbuf_sub(h->ridx, h->data);
size_t wr = ringbuf_sub(h->widx, h->data);
if (wr >= rd) {
/* It really did succeed */
@@ -1550,7 +1550,7 @@ bool buf_pin_handle(int handle_id, bool pin)
h->pinned--;
}
- return true;
+ return true;
}
bool buf_signal_handle(int handle_id, bool signal)
@@ -1560,7 +1560,7 @@ bool buf_signal_handle(int handle_id, bool signal)
return false;
h->signaled = signal ? 1 : 0;
- return true;
+ return true;
}
/* Return the size of the ringbuffer */
@@ -1750,7 +1750,7 @@ bool buffering_reset(char *buf, size_t buflen)
if (buf) {
buflen -= MIN(buflen, GUARD_BUFSIZE);
-
+
STORAGE_ALIGN_BUFFER(buf, buflen);
if (!buf || !buflen)