summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Bauer <fred.w.bauer@gmail.com>2011-11-27 16:27:20 +0000
committerFred Bauer <fred.w.bauer@gmail.com>2011-11-27 16:27:20 +0000
commit2154cbf70665b812553335f49174c673a95e7503 (patch)
treee24e5cfb0e0b3ab56672ec9fe4c6d94e74dfdfa5
parent6e664f49b1aa60edf2e328b0df4d7e67e594184c (diff)
downloadrockbox-2154cbf70665b812553335f49174c673a95e7503.tar.gz
rockbox-2154cbf70665b812553335f49174c673a95e7503.zip
remove stray debugging line
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31078 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/font_cache.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/firmware/font_cache.c b/firmware/font_cache.c
index 50320ed932..4604d1524e 100644
--- a/firmware/font_cache.c
+++ b/firmware/font_cache.c
@@ -116,7 +116,6 @@ static int search(struct font_cache* fcache,
116 while (left <= right); 116 while (left <= right);
117 117
118 /* not found */ 118 /* not found */
119 p = lru_data(&fcache->_lru, fcache->_index[mid]);
120 *p_insertion_point = mid; 119 *p_insertion_point = mid;
121 return 0; 120 return 0;
122} 121}