From ca55f133de16d928d57f6900a279e8efc66f7f26 Mon Sep 17 00:00:00 2001 From: Nicolas Pennequin Date: Tue, 8 Jan 2008 14:33:17 +0000 Subject: Fix typo. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16026 a1c6a512-1295-4272-9138-f99709370657 --- apps/pcmbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c index 4ed2973dbb..8153118715 100644 --- a/apps/pcmbuf.c +++ b/apps/pcmbuf.c @@ -303,7 +303,7 @@ void pcmbuf_set_event_handler(void (*event_handler)(void)) unsigned int pcmbuf_get_latency(void) { - /* Be careful how this calculation is rearranted, it's easy to overflow */ + /* Be careful how this calculation is rearranged, it's easy to overflow */ size_t bytes = pcmbuf_unplayed_bytes + pcm_get_bytes_waiting(); return bytes / 4 / (NATIVE_FREQUENCY/1000); } -- cgit v1.2.3