summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2010-04-10 20:31:01 +0000
committerAlexander Levin <al.le@rockbox.org>2010-04-10 20:31:01 +0000
commit4779456c3fecbf83b2aa591bb6b05821b7ec1148 (patch)
treeba5f044d8bae12e3e4849812a8ac258deda297cd
parentf23251999c6a622af99f60e51ba867d54076f186 (diff)
downloadrockbox-4779456c3fecbf83b2aa591bb6b05821b7ec1148.tar.gz
rockbox-4779456c3fecbf83b2aa591bb6b05821b7ec1148.zip
Fix typos in comments
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25574 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/onplay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 0959cdf514..27a3196e16 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -1215,11 +1215,11 @@ enum hotkey_action {
1215}; 1215};
1216 1216
1217struct hotkey_assignment { 1217struct hotkey_assignment {
1218 int item; /* Bit or'd hotkey_action and HOTKEY_CTX_x */ 1218 int item; /* Bit or'd hotkey_action and HOTKEY_CTX_x */
1219 struct menu_func func; /* Function to run if this entry is selcted */ 1219 struct menu_func func; /* Function to run if this entry is selected */
1220 int return_code; /* What to return afer the function is run */ 1220 int return_code; /* What to return after the function is run */
1221 const struct menu_item_ex *menu_addr; 1221 const struct menu_item_ex *menu_addr;
1222 int lang_id; /* How to present the item to the user */ 1222 int lang_id; /* How to present the item to the user */
1223}; 1223};
1224 1224
1225#define HOTKEY_FUNC(func, param) {{(void *)func}, param} 1225#define HOTKEY_FUNC(func, param) {{(void *)func}, param}